missed a g_free() that should be g_slice_free()
This commit is contained in:
parent
343ca097f7
commit
d45af3cb45
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ void client_fake_unmanage(ObClient *self)
|
||||||
/* this is all that got allocated to get the decorations */
|
/* this is all that got allocated to get the decorations */
|
||||||
|
|
||||||
frame_free(self->frame);
|
frame_free(self->frame);
|
||||||
g_free(self);
|
g_slice_free(ObClient, self);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean client_can_steal_focus(ObClient *self, Time steal_time,
|
static gboolean client_can_steal_focus(ObClient *self, Time steal_time,
|
||||||
|
|
Loading…
Reference in a new issue