isItTimeToYield in the conditional effectively didn't do anything here. Take it out, and remove the comment since LBX proxies aren't a thing for us anymore.
Signed-off-by: Adam Jackson <[email protected]> --- dix/dispatch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dix/dispatch.c b/dix/dispatch.c index 4f830f7..f7a08f8 100644 --- a/dix/dispatch.c +++ b/dix/dispatch.c @@ -3188,13 +3188,11 @@ ProcKillClient(ClientPtr client) rc = dixLookupClient(&killclient, stuff->id, client, DixDestroyAccess); if (rc == Success) { CloseDownClient(killclient); - /* if an LBX proxy gets killed, isItTimeToYield will be set */ - if (isItTimeToYield || (client == killclient)) { + if (client == killclient) { /* force yield and return Success, so that Dispatch() * doesn't try to touch client */ isItTimeToYield = TRUE; - return Success; } return Success; } -- 1.9.3 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
