summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeungha Yang <sh.yang@lge.com>2017-04-16 18:47:56 +0900
committerSebastian Dröge <sebastian@centricular.com>2017-05-08 18:10:46 +0200
commit6578c44a92a92b922ef45871097eb60831807173 (patch)
tree580768e72002b5a1597f671a9e258051ce33dece
parent43bf94db5b7cab3ca486c46ef0fdcfda0f206498 (diff)
downloadgstreamer-plugins-good-6578c44a92a92b922ef45871097eb60831807173.tar.gz
qtdemux: Fix leak on QtDemuxStreamStsdEntry
Fix unit test failure https://bugzilla.gnome.org/show_bug.cgi?id=781362
-rw-r--r--gst/isomp4/qtdemux.c1
1 files changed, 1 insertions, 0 deletions
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);
}