From: Dana Jansens Date: Tue, 29 May 2007 03:38:18 +0000 (+0000) Subject: dont free random stuff X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=1d267613a3c3423d00150a9ba778f229385cd03e;p=chaz%2Fopenbox dont free random stuff --- diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 0ac274dd..8251deab 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -406,7 +406,6 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c) const gint row = i / icons_per_row; /* starting from 0 */ const gint col = i % icons_per_row; /* starting from 0 */ gint innerx, innery; - RrPixel32 *icon_data; /* find the dimensions of the icon inside it */ innerx = icons_center_x + l + (col * ICON_SIZE); @@ -433,9 +432,6 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c) p->a_icon->surface.parentx = innerx; p->a_icon->surface.parenty = innery; RrPaint(p->a_icon, target->win, innerw, innerh); - - if (target->client->iconic) - g_free(icon_data); } }