window-actor: Fix leaked frame list

https://bugzilla.gnome.org/show_bug.cgi?id=695135
This commit is contained in:
Pavel Vasin 2013-03-04 19:00:42 +04:00 committed by Florian Müllner
parent 7db236b2a4
commit 4d437e32e0

View File

@ -450,6 +450,7 @@ meta_window_actor_finalize (GObject *object)
MetaWindowActor *self = META_WINDOW_ACTOR (object);
MetaWindowActorPrivate *priv = self->priv;
g_list_free_full (priv->frames, (GDestroyNotify) frame_data_free);
g_free (priv->desc);
G_OBJECT_CLASS (meta_window_actor_parent_class)->finalize (object);