Coverity #833: Fix a rather nasty memory leak.

This commit is contained in:
Adam Jackson 2006-04-03 01:43:33 +00:00
parent a01f17d6de
commit 01ebd63301
2 changed files with 7 additions and 0 deletions

View File

@ -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:

View File

@ -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;
}