summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-14 21:06:43 +0000
committerDana Jansens <danakj@orodu.net>2003-09-14 21:06:43 +0000
commit9a7db27b467944c9ade8fd09a89200b2d2aa6e30 (patch)
treee23b02a2231b6c84ad82c4d729ea65842e79cfe5
parent11e28eaa5c9e3ace49758345eac2f6c4b701659b (diff)
fix mem leak
-rw-r--r--openbox/popup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/openbox/popup.c b/openbox/popup.c
index 592c5ee0..8701e1d8 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -395,6 +395,7 @@ void pager_popup_free(ObPagerPopup *self)
for (i = 0; i < self->desks; ++i)
XDestroyWindow(ob_display, self->wins[i]);
+ g_free(self->wins);
RrAppearanceFree(self->hilight);
RrAppearanceFree(self->unhilight);
popup_free(self->popup);