From: Dana Jansens Date: Fri, 26 Feb 2010 20:36:44 +0000 (-0500) Subject: missing a g_slice_free X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=cfce98840ac138675971f8421032da9e0030ecc7;p=chaz%2Fopenbox missing a g_slice_free --- diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 3a2981dd..16770ed7 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -220,7 +220,7 @@ void focus_cycle_popup_shutdown(gboolean reconfig) g_free(t->text); XDestroyWindow(obt_display, t->iconwin); XDestroyWindow(obt_display, t->textwin); - g_free(t); + g_slice_free(ObFocusCyclePopupTarget, t); popup.targets = g_list_delete_link(popup.targets, popup.targets); }