diff --git a/Xext/sync.c b/Xext/sync.c index 323b9dbe1..63350685c 100644 --- a/Xext/sync.c +++ b/Xext/sync.c @@ -1899,7 +1899,7 @@ ProcSyncCreateFence(ClientPtr client) if (!AddResource(stuff->fid, RTFence, (void *) pFence)) return BadAlloc; - return client->noClientException; + return Success; } static int @@ -1940,7 +1940,7 @@ ProcSyncTriggerFence(ClientPtr client) miSyncTriggerFence(pFence); - return client->noClientException; + return Success; } static int @@ -1962,7 +1962,7 @@ ProcSyncResetFence(ClientPtr client) pFence->funcs.Reset(pFence); - return client->noClientException; + return Success; } static int @@ -1980,7 +1980,7 @@ ProcSyncDestroyFence(ClientPtr client) return rc; FreeResource(stuff->fid, RT_NONE); - return client->noClientException; + return Success; } static int @@ -2012,7 +2012,7 @@ ProcSyncQueryFence(ClientPtr client) } WriteToClient(client, sizeof(xSyncQueryFenceReply), &rep); - return client->noClientException; + return Success; } static int @@ -2090,7 +2090,7 @@ ProcSyncAwaitFence(ClientPtr client) SyncAwaitEpilogue(client, items, pAwaitUnion); - return client->noClientException; + return Success; } /*