From 7b181fe23d724b2057efc383b1bdadc837bad2fb Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 25 Jan 2008 10:27:44 -0500 Subject: [PATCH] fix a mem leak --- openbox/focus_cycle_popup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 9a6f242..f0cf25e 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); } -- 1.9.1