diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-01-25 10:27:44 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-25 10:27:44 -0500 |
| commit | 7b181fe23d724b2057efc383b1bdadc837bad2fb (patch) | |
| tree | bcdf7b03b47b567aaedadcbb2ff51dae20f72f58 | |
| parent | 41aeb42af13774c11e5a23e51bf56fa053678b5a (diff) | |
fix a mem leak
| -rw-r--r-- | openbox/focus_cycle_popup.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } |
