summaryrefslogtreecommitdiff
path: root/glx/clientinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'glx/clientinfo.c')
-rw-r--r--glx/clientinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/glx/clientinfo.c b/glx/clientinfo.c
index c5fef3074..74ad91991 100644
--- a/glx/clientinfo.c
+++ b/glx/clientinfo.c
@@ -36,13 +36,14 @@ set_client_info(__GLXclientState * cl, xGLXSetClientInfoARBReq * req,
ClientPtr client = cl->client;
char *gl_extensions;
char *glx_extensions;
+ int size;
REQUEST_AT_LEAST_SIZE(xGLXSetClientInfoARBReq);
/* Verify that the size of the packet matches the size inferred from the
* sizes specified for the various fields.
*/
- int size = sz_xGLXSetClientInfoARBReq;
+ size = sz_xGLXSetClientInfoARBReq;
size = safe_add(size, safe_mul(req->numVersions, bytes_per_version));
size = safe_add(size, safe_pad(req->numGLExtensionBytes));
size = safe_add(size, safe_pad(req->numGLXExtensionBytes));