From: Dana Jansens Date: Tue, 16 Feb 2010 21:04:47 +0000 (-0500) Subject: missed a g_free() that should be g_slice_free() X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=d45af3cb45f35ba639efac15675ed10b3515a7f0 missed a g_free() that should be g_slice_free() --- 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,