mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-27 01:34:54 +00:00
vnd: Fix a silly memory leak
'disp' was already allocated by LookupVendorPrivDispatch above,
clobbering it will do no good.
Signed-off-by: Adam Jackson <ajax@redhat.com>
(cherry picked from commit 709c656297)
This commit is contained in:
@@ -386,10 +386,6 @@ static int dispatch_GLXVendorPriv(ClientPtr client)
|
||||
// Note that even if none of the vendors provides a dispatch stub,
|
||||
// we'll still add an entry to the dispatch table, so that we don't
|
||||
// have to look it up again later.
|
||||
disp = (GlxVendorPrivDispatch *) malloc(sizeof(GlxVendorPrivDispatch));
|
||||
if (disp == NULL) {
|
||||
return BadAlloc;
|
||||
}
|
||||
|
||||
disp->proc = GetVendorDispatchFunc(stuff->glxCode,
|
||||
GlxCheckSwap(client,
|
||||
|
||||
Reference in New Issue
Block a user