mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 13:11:06 +00:00
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:
parent
f9971bde93
commit
0a5db2e479
2 changed files with 8 additions and 0 deletions
|
@ -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>
|
2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -226,6 +226,8 @@ gst_index_finalize (GObject * object)
|
||||||
g_hash_table_destroy (index->writers);
|
g_hash_table_destroy (index->writers);
|
||||||
index->writers = NULL;
|
index->writers = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue