From 71ef49062ee33ac49033fbcd67bab88120882668 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Fri, 28 Feb 2014 14:05:25 -0500 Subject: [PATCH] dix: Make some LBX-era code more obvious 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. Reviewed-by: Keith Packard Signed-off-by: Adam Jackson --- dix/dispatch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dix/dispatch.c b/dix/dispatch.c index 4f830f7f4..f7a08f82e 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; }