From c5b420068a069c83b735d57f78e427bcc0a5fef4 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Thu, 16 Jul 2009 17:10:21 +0200 Subject: effectv: Chain up finalize to the parent class in warptv Fixes a memory leak. --- gst/effectv/gstwarp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gst/effectv') diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c index 80c6b828..dae2604b 100644 --- a/gst/effectv/gstwarp.c +++ b/gst/effectv/gstwarp.c @@ -244,6 +244,8 @@ gst_warptv_finalize (GObject * object) warptv->offstable = NULL; g_free (warptv->disttable); warptv->disttable = NULL; + + G_OBJECT_CLASS (parent_class)->finalize (object); } static void -- cgit