From: Sebastian Dröge Date: Mon, 11 Feb 2008 08:53:04 +0000 (+0000) Subject: gst/gstindex.c: Chain up finalize to the parent class. Fixes leaking the GstObject... X-Git-Tag: RELEASE-0_10_18~50 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a5db2e47982f3562f90a92c6d724fdfad6a2f40;p=platform%2Fupstream%2Fgstreamer.git 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. --- 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