From: Dana Jansens Date: Fri, 25 Jan 2008 15:27:44 +0000 (-0500) Subject: fix a mem leak X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=7b181fe23d724b2057efc383b1bdadc837bad2fb;p=chaz%2Fopenbox fix a mem leak --- diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 9a6f2420..f0cf25e2 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -481,6 +481,7 @@ void focus_cycle_popup_hide(void) g_free(t->text); XDestroyWindow(ob_display, t->win); + g_free(t); popup.targets = g_list_delete_link(popup.targets, popup.targets); }