summaryrefslogtreecommitdiffstats
path: root/hacks/deluxe.c
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/deluxe.c')
-rw-r--r--hacks/deluxe.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/hacks/deluxe.c b/hacks/deluxe.c
index 694a982..5fd7eb7 100644
--- a/hacks/deluxe.c
+++ b/hacks/deluxe.c
@@ -423,6 +423,20 @@ deluxe_event (Display *dpy, Window window, void *closure, XEvent *event)
static void
deluxe_free (Display *dpy, Window window, void *closure)
{
+ struct state *st = (struct state *) closure;
+ int i;
+ XFreeGC (dpy, st->erase_gc);
+ if (st->ba) XFreePixmap (dpy, st->ba);
+ if (st->bb) XFreePixmap (dpy, st->bb);
+ if (st->plane_masks) free (st->plane_masks);
+ for (i = 0; i < st->count; i++)
+ if (st->throbbers[i]) {
+ XFreeGC (dpy, st->throbbers[i]->gc);
+ free (st->throbbers[i]);
+ }
+ free (st->throbbers);
+ free (st->colors);
+ free (st);
}