From 3b9ea4b85f01e7dfc97097b312a1af4a357b825a Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Sun, 16 Apr 2017 18:47:56 +0900 Subject: [PATCH] qtdemux: Fix leak on QtDemuxStreamStsdEntry Fix unit test failure https://bugzilla.gnome.org/show_bug.cgi?id=781362 --- gst/isomp4/qtdemux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index c03f3ec..6893388 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -2536,6 +2536,7 @@ gst_qtdemux_stream_free (GstQTDemux * qtdemux, QtDemuxStream * stream) gst_element_remove_pad (GST_ELEMENT_CAST (qtdemux), stream->pad); gst_flow_combiner_remove_pad (qtdemux->flowcombiner, stream->pad); } + g_free (stream->stsd_entries); g_free (stream); } -- 2.7.4