diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2006-03-15 Edward Hervey <edward@fluendo.com> + * gst/qtdemux/qtdemux.c: (gst_qtdemux_dispose): + Let's not forget to chain up to the parent dispose. + +2006-03-15 Edward Hervey <edward@fluendo.com> + * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init), (gst_qtdemux_init), (gst_qtdemux_dispose), (gst_qtdemux_add_stream), (qtdemux_parse_trak): diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index c517b164..90b34a3f 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -349,6 +349,8 @@ gst_qtdemux_dispose (GObject * object) g_object_unref (G_OBJECT (qtdemux->adapter)); qtdemux->adapter = NULL; } + + G_OBJECT_CLASS (parent_class)->dispose (object); } #if 0 |