From 6578c44a92a92b922ef45871097eb60831807173 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Sun, 16 Apr 2017 18:47:56 +0900 Subject: 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 4cbcaedb2..1f73cb0f1 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -2443,6 +2443,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); } -- cgit v1.2.1