From 0a5db2e47982f3562f90a92c6d724fdfad6a2f40 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 11 Feb 2008 08:53:04 +0000 Subject: [PATCH] gst/gstindex.c: Chain up finalize to the parent class. Fixes leaking the GstObject name and other things. Original commit message from CVS: * gst/gstindex.c: (gst_index_finalize): Chain up finalize to the parent class. Fixes leaking the GstObject name and other things. --- ChangeLog | 6 ++++++ gst/gstindex.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index f94ba7e..776c0fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-11 Sebastian Dröge + + * gst/gstindex.c: (gst_index_finalize): + Chain up finalize to the parent class. Fixes leaking the GstObject + name and other things. + 2008-02-08 Jan Schmidt * configure.ac: diff --git a/gst/gstindex.c b/gst/gstindex.c index d5f1c57..6f3a447 100644 --- a/gst/gstindex.c +++ b/gst/gstindex.c @@ -226,6 +226,8 @@ gst_index_finalize (GObject * object) g_hash_table_destroy (index->writers); index->writers = NULL; } + + G_OBJECT_CLASS (parent_class)->finalize (object); } static void -- 2.7.4