diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-07-16 17:10:21 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-07-16 17:10:21 +0200 |
commit | c5b420068a069c83b735d57f78e427bcc0a5fef4 (patch) | |
tree | 300b37110abd91ac167b66f2f7bf4b05399330a8 | |
parent | e382514818c0d232e520b31686aac52ead4a3b5b (diff) |
effectv: Chain up finalize to the parent class in warptv
Fixes a memory leak.
-rw-r--r-- | gst/effectv/gstwarp.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 |