diff options
author | Edward Hervey <bilboed@bilboed.com> | 2006-03-15 15:08:20 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2006-03-15 15:08:20 +0000 |
commit | cd1bbadf591befc4dc6c52c0d5bc1b912ff1c63d (patch) | |
tree | 460f80d98f4333745e4f6cadbe77fbd3d7dd61ab /gst | |
parent | 3424048158759a35afbfe0219cbcff2cc09ba0b0 (diff) |
gst/qtdemux/qtdemux.c: Let's not forget to chain up to the parent dispose.
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_dispose):
Let's not forget to chain up to the parent dispose.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 |