]> Dogcows Code - chaz/openbox/commitdiff
NULL ic when we failed to load an image
authorMikael Magnusson <mikachu@gmail.com>
Mon, 11 Jan 2010 21:48:06 +0000 (22:48 +0100)
committerMikael Magnusson <mikachu@gmail.com>
Mon, 11 Jan 2010 22:53:45 +0000 (23:53 +0100)
openbox/menu.c

index 524220c0af14325eb691924ff1ea640928d44bf6..6dd6d072d797ccb59548e29eb43f8fc0ec754840 100644 (file)
@@ -299,8 +299,10 @@ static void parse_menu_item(xmlNodePtr node,  gpointer data)
                     RrImageRef(ic);
                 else {
                     ic = RrImageNew(ob_rr_icons);
-                    if (!RrImageAddPictureName(ic, icon))
+                    if (!RrImageAddPictureName(ic, icon)) {
                         RrImageUnref(ic); /* no need to keep it around */
+                        ic = NULL;
+                    }
                 }
                 e->data.normal.icon = ic;
 
This page took 0.023169 seconds and 4 git commands to generate.