From c5b420068a069c83b735d57f78e427bcc0a5fef4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 16 Jul 2009 17:10:21 +0200 Subject: [PATCH] effectv: Chain up finalize to the parent class in warptv Fixes a memory leak. --- gst/effectv/gstwarp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c index 80c6b82..dae2604 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 -- 2.7.4