dri2: Don't make reference to noClientException

noClientException is now never filled in with a meaningful value, it's
always -1. The sole caller of this function disregards the error value
in any case.

Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Adam Jackson 2016-06-28 15:54:44 -04:00
parent dff435568b
commit 7d33ab0f8c
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ __glXDRIcontextWait(__GLXcontext * baseContext,
}
if (ret) {
*error = cl->client->noClientException;
*error = -1;
return TRUE;
}