diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-02-26 15:36:44 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-02-26 15:36:44 -0500 |
| commit | cfce98840ac138675971f8421032da9e0030ecc7 (patch) | |
| tree | 8cb6c610dfc4966dc8b309ae02a7e53647c7d123 /openbox | |
| parent | daa2e0ab7191d28e09b312322ee29eecaaae13fb (diff) | |
missing a g_slice_free
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/focus_cycle_popup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
