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.
This commit is contained in:
Sebastian Dröge 2008-02-11 08:53:04 +00:00
parent f9971bde93
commit 0a5db2e479
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2008-02-11 Sebastian Dröge <slomo@circular-chaos.org>
* 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 <jan.schmidt@sun.com>
* configure.ac:

View file

@ -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