mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-26 06:04:49 +00:00
Coverity #833: Fix a rather nasty memory leak.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2006-04-02 Adam Jackson <ajax@freedesktop.org>
|
||||
|
||||
* os/xdmauth.c:
|
||||
Coverity #833: Fix a rather nasty memory leak.
|
||||
|
||||
2006-04-02 Adam Jackson <ajax@freedesktop.org>
|
||||
|
||||
* hw/xfree86/dri/dri.c:
|
||||
|
||||
@@ -436,10 +436,12 @@ XdmToID (unsigned short cookie_length, char *cookie)
|
||||
{
|
||||
xfree (client);
|
||||
xfree (cookie);
|
||||
xfree (plain);
|
||||
return auth->id;
|
||||
}
|
||||
}
|
||||
xfree (cookie);
|
||||
xfree (plain);
|
||||
return (XID) -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user