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 <keithp@keithp.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Adam Jackson 2014-02-28 14:05:25 -05:00
parent a317e0a974
commit 71ef49062e

View File

@ -3188,13 +3188,11 @@ ProcKillClient(ClientPtr client)
rc = dixLookupClient(&killclient, stuff->id, client, DixDestroyAccess); rc = dixLookupClient(&killclient, stuff->id, client, DixDestroyAccess);
if (rc == Success) { if (rc == Success) {
CloseDownClient(killclient); CloseDownClient(killclient);
/* if an LBX proxy gets killed, isItTimeToYield will be set */ if (client == killclient) {
if (isItTimeToYield || (client == killclient)) {
/* force yield and return Success, so that Dispatch() /* force yield and return Success, so that Dispatch()
* doesn't try to touch client * doesn't try to touch client
*/ */
isItTimeToYield = TRUE; isItTimeToYield = TRUE;
return Success;
} }
return Success; return Success;
} }