[0.10] gst-plugins-bad: mpegdemux: fix missing finalize chaining to parent
Tim Müller
tpm at kemper.freedesktop.org
Wed Jan 18 05:29:45 PST 2012
Module: gst-plugins-bad
Branch: 0.10
Commit: 49b40ea79040ede1707fca68b9421bafcaa67c9a
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=49b40ea79040ede1707fca68b9421bafcaa67c9a
Author: Vincent Penquerc'h <vincent.penquerch at collabora.co.uk>
Date: Mon Jan 16 17:07:29 2012 +0000
mpegdemux: fix missing finalize chaining to parent
This code does not seem to trigger on my test streams, so it's
a bit of a blind fix, but seems safe enough to push.
---
gst/mpegdemux/flutspmtstreaminfo.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/gst/mpegdemux/flutspmtstreaminfo.c b/gst/mpegdemux/flutspmtstreaminfo.c
index 9fd449c..7ab5ba4 100644
--- a/gst/mpegdemux/flutspmtstreaminfo.c
+++ b/gst/mpegdemux/flutspmtstreaminfo.c
@@ -122,6 +122,8 @@ mpegts_pmt_stream_info_finalize (GObject * object)
g_value_array_free (info->languages);
g_value_array_free (info->descriptors);
+
+ GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
}
MpegTsPmtStreamInfo *
More information about the gstreamer-commits
mailing list