mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-30 07:44:29 +00:00
glx/vndcmds: Fix vendor hash table key size
The keySize parameter of the hashing/comparison functions was
incorrectly specified to be sizeof(void*), even though the keys of
this hashtable are CARD32.
Fixes address sanitizer failure on 64-bit builds.
Reviewed-by: Adam Jackson <ajax@redhat.com>
(cherry picked from commit 707d0f912b)
This commit is contained in:
committed by
Adam Jackson
parent
d7220428da
commit
38835d1d8f
@@ -50,7 +50,7 @@ typedef struct GlxVendorPrivDispatchRec {
|
||||
static GlxServerDispatchProc dispatchFuncs[OPCODE_ARRAY_LEN] = {};
|
||||
static HashTable vendorPrivHash = NULL;
|
||||
static HtGenericHashSetupRec vendorPrivSetup = {
|
||||
.keySize = sizeof(void*)
|
||||
.keySize = sizeof(CARD32)
|
||||
};
|
||||
|
||||
static int DispatchBadRequest(ClientPtr client)
|
||||
|
||||
Reference in New Issue
Block a user