From 933d41f15d03b91a383b4945b66473cf1d04cb18 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Sat, 22 Sep 2012 13:27:20 +0200 Subject: [PATCH] timeline: Plug a leak in the movecontext code --- ges/ges-timeline.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 0509bdf6f5..1d6d3b3b61 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -269,6 +269,8 @@ ges_timeline_dispose (GObject * object) g_hash_table_unref (priv->by_object); g_sequence_free (priv->starts_ends); g_sequence_free (priv->tracksources); + g_list_free (priv->movecontext.moving_tckobjs); + g_hash_table_unref (priv->movecontext.moving_tlobjs); G_OBJECT_CLASS (ges_timeline_parent_class)->dispose (object); }