diff options
-rw-r--r-- | mi/midispcur.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mi/midispcur.c b/mi/midispcur.c index 59923c875..c279010e6 100644 --- a/mi/midispcur.c +++ b/mi/midispcur.c @@ -569,6 +569,12 @@ miDCDeviceCleanup(DeviceIntPtr pDev, ScreenPtr pScreen) if (pBuffer->pSaveGC) FreeGC(pBuffer->pSaveGC, (GContext) 0); if (pBuffer->pRestoreGC) FreeGC(pBuffer->pRestoreGC, (GContext) 0); +#ifdef ARGB_CURSOR + /* If a pRootPicture was allocated for a root window, it + * is freed when that root window is destroyed, so don't + * free it again here. */ +#endif + if (pBuffer->pSave) (*pScreen->DestroyPixmap)(pBuffer->pSave); free(pBuffer); |