xf86SbusCmapLoadPalette: Delay malloc until needed, avoiding leak on error
authorAlan Coopersmith <alan.coopersmith@oracle.com>
Sun, 10 Feb 2013 18:24:59 +0000 (10:24 -0800)
committerAlan Coopersmith <alan.coopersmith@oracle.com>
Wed, 24 Apr 2013 21:22:36 +0000 (14:22 -0700)
Reported with other leaks found by cppcheck in bugzilla #50281
https://bugs.freedesktop.org/show_bug.cgi?id=50281

V2: check for malloc failure

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
hw/xfree86/common/xf86sbusBus.c

index b6a6b94..07eb71e 100644 (file)
@@ -641,14 +641,16 @@ xf86SbusCmapLoadPalette(ScrnInfoPtr pScrn, int numColors, int *indices,
     int i, index;
     sbusCmapPtr cmap;
     struct fbcmap fbcmap;
-    unsigned char *data = malloc(numColors * 3);
+    unsigned char *data;
 
     cmap = SBUSCMAPPTR(pScrn->pScreen);
     if (!cmap)
         return;
     fbcmap.count = 0;
     fbcmap.index = indices[0];
-    fbcmap.red = data;
+    fbcmap.red = data = malloc(numColors * 3);
+    if (!data)
+        return;
     fbcmap.green = data + numColors;
     fbcmap.blue = fbcmap.green + numColors;
     for (i = 0; i < numColors; i++) {