summaryrefslogtreecommitdiff
path: root/hw/xnest
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-04-03 01:51:54 +0000
committerAdam Jackson <ajax@nwnk.net>2006-04-03 01:51:54 +0000
commit7ef95da8a3e22e710882590fc47d56893159cb5d (patch)
treef33b7a2f97d34896d1efb7836c9b842d010ea237 /hw/xnest
parent01ebd633017249c496f378df511586c973d49708 (diff)
Coverity #616: Fix a rare memory leak.
Diffstat (limited to 'hw/xnest')
-rw-r--r--hw/xnest/Pixmap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/xnest/Pixmap.c b/hw/xnest/Pixmap.c
index 30ffbc6e6..046b73976 100644
--- a/hw/xnest/Pixmap.c
+++ b/hw/xnest/Pixmap.c
@@ -102,7 +102,10 @@ xnestPixmapToRegion(PixmapPtr pPixmap)
pReg = REGION_CREATE(pPixmap->drawable.pScreen, NULL, 1);
pTmpReg = REGION_CREATE(pPixmap->drawable.pScreen, NULL, 1);
- if(!pReg || !pTmpReg) return NullRegion;
+ if(!pReg || !pTmpReg) {
+ XDestroyImage(ximage);
+ return NullRegion;
+ }
for (y = 0; y < pPixmap->drawable.height; y++) {
Box.y1 = y;