Xephyr: fix memory leak in XF86DRIOpenConnection
The allocated bus id string was not being freed. Signed-off-by: Julien Cristau <jcristau@debian.org> Reviewed-by: Jamey Sharp <jamey@minilop.net> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
390a8466dd
commit
e6531ae9d5
|
@ -682,7 +682,7 @@ ProcXF86DRIOpenConnection (register ClientPtr client)
|
||||||
{
|
{
|
||||||
xXF86DRIOpenConnectionReply rep;
|
xXF86DRIOpenConnectionReply rep;
|
||||||
drm_handle_t hSAREA;
|
drm_handle_t hSAREA;
|
||||||
char* busIdString;
|
char* busIdString = NULL;
|
||||||
REQUEST(xXF86DRIOpenConnectionReq);
|
REQUEST(xXF86DRIOpenConnectionReq);
|
||||||
REQUEST_SIZE_MATCH(xXF86DRIOpenConnectionReq);
|
REQUEST_SIZE_MATCH(xXF86DRIOpenConnectionReq);
|
||||||
|
|
||||||
|
@ -716,6 +716,7 @@ ProcXF86DRIOpenConnection (register ClientPtr client)
|
||||||
WriteToClient(client, sizeof(xXF86DRIOpenConnectionReply), (char *)&rep);
|
WriteToClient(client, sizeof(xXF86DRIOpenConnectionReply), (char *)&rep);
|
||||||
if (rep.busIdStringLength)
|
if (rep.busIdStringLength)
|
||||||
WriteToClient(client, rep.busIdStringLength, busIdString);
|
WriteToClient(client, rep.busIdStringLength, busIdString);
|
||||||
|
free(busIdString);
|
||||||
EPHYR_LOG ("leave\n") ;
|
EPHYR_LOG ("leave\n") ;
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue