From d45af3cb45f35ba639efac15675ed10b3515a7f0 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 16 Feb 2010 16:04:47 -0500 Subject: [PATCH] missed a g_free() that should be g_slice_free() --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index 08ce6f37..f8c3c457 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -702,7 +702,7 @@ void client_fake_unmanage(ObClient *self) /* this is all that got allocated to get the decorations */ frame_free(self->frame); - g_free(self); + g_slice_free(ObClient, self); } static gboolean client_can_steal_focus(ObClient *self, Time steal_time, -- 2.44.0