]> Dogcows Code - chaz/openbox/commitdiff
missed a g_free() that should be g_slice_free()
authorDana Jansens <danakj@orodu.net>
Tue, 16 Feb 2010 21:04:47 +0000 (16:04 -0500)
committerDana Jansens <danakj@orodu.net>
Tue, 16 Feb 2010 21:04:47 +0000 (16:04 -0500)
openbox/client.c

index 08ce6f375322d4257e2eaa77d91f3049b7bafd0f..f8c3c457843b63027ce033dd36323c7212cca1d4 100644 (file)
@@ -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,
This page took 0.033037 seconds and 4 git commands to generate.