Coverity #836: Fix another memory leak.
This commit is contained in:
parent
9c84ed5f8d
commit
b472ce7307
|
@ -1,3 +1,8 @@
|
||||||
|
2006-04-06 Adam Jackson <ajax@freedesktop.org>
|
||||||
|
|
||||||
|
* hw/xfree86/common/xf86Config.c:
|
||||||
|
Coverity #836: Fix another memory leak.
|
||||||
|
|
||||||
2006-04-06 Adam Jackson <ajax@freedesktop.org>
|
2006-04-06 Adam Jackson <ajax@freedesktop.org>
|
||||||
|
|
||||||
* hw/xfree86/common/xf86Config.c:
|
* hw/xfree86/common/xf86Config.c:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $XdotOrg: xserver/xorg/hw/xfree86/common/xf86Config.c,v 1.24 2006/04/03 22:00:06 ajax Exp $ */
|
/* $XdotOrg: xserver/xorg/hw/xfree86/common/xf86Config.c,v 1.25 2006/04/07 01:34:29 ajax Exp $ */
|
||||||
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Config.c,v 3.276 2003/10/08 14:58:26 dawes Exp $ */
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Config.c,v 3.276 2003/10/08 14:58:26 dawes Exp $ */
|
||||||
|
|
||||||
|
|
||||||
|
@ -2034,8 +2034,10 @@ configImpliedLayout(serverLayoutPtr servlayoutp, XF86ConfScreenPtr conf_screen)
|
||||||
slp = xnfcalloc(1, 2 * sizeof(screenLayoutRec));
|
slp = xnfcalloc(1, 2 * sizeof(screenLayoutRec));
|
||||||
slp[0].screen = xnfcalloc(1, sizeof(confScreenRec));
|
slp[0].screen = xnfcalloc(1, sizeof(confScreenRec));
|
||||||
slp[1].screen = NULL;
|
slp[1].screen = NULL;
|
||||||
if (!configScreen(slp[0].screen, conf_screen, 0, from))
|
if (!configScreen(slp[0].screen, conf_screen, 0, from)) {
|
||||||
|
xfree(slp);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
}
|
||||||
servlayoutp->id = "(implicit)";
|
servlayoutp->id = "(implicit)";
|
||||||
servlayoutp->screens = slp;
|
servlayoutp->screens = slp;
|
||||||
servlayoutp->inactives = xnfcalloc(1, sizeof(GDevRec));
|
servlayoutp->inactives = xnfcalloc(1, sizeof(GDevRec));
|
||||||
|
|
Loading…
Reference in New Issue