Don't destroy a pixmap twice on server exit (bugzilla #4247).
This commit is contained in:
parent
6930794423
commit
5c7aef148d
|
@ -1,3 +1,8 @@
|
||||||
|
2006-05-25 Matthieu Herrb <matthieu.herrb@laas.fr>
|
||||||
|
|
||||||
|
* mi/midispcur.c: (miDCCloseScreen)
|
||||||
|
Don't destroy a pixmap twice on server exit (bugzilla #4247).
|
||||||
|
|
||||||
2006-05-24 Jeremy C. Reed <reed@reedmedia.net>
|
2006-05-24 Jeremy C. Reed <reed@reedmedia.net>
|
||||||
|
|
||||||
* hw/xfree86/utils/xorgcfg/text-mode.c:
|
* hw/xfree86/utils/xorgcfg/text-mode.c:
|
||||||
|
|
|
@ -184,7 +184,9 @@ miDCCloseScreen (index, pScreen)
|
||||||
tossPix (pScreenPriv->pSave);
|
tossPix (pScreenPriv->pSave);
|
||||||
tossPix (pScreenPriv->pTemp);
|
tossPix (pScreenPriv->pTemp);
|
||||||
#ifdef ARGB_CURSOR
|
#ifdef ARGB_CURSOR
|
||||||
|
#if 0 /* This has been free()d before */
|
||||||
tossPict (pScreenPriv->pRootPicture);
|
tossPict (pScreenPriv->pRootPicture);
|
||||||
|
#endif
|
||||||
tossPict (pScreenPriv->pTempPicture);
|
tossPict (pScreenPriv->pTempPicture);
|
||||||
#endif
|
#endif
|
||||||
xfree ((pointer) pScreenPriv);
|
xfree ((pointer) pScreenPriv);
|
||||||
|
|
Loading…
Reference in New Issue