summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux/qtdemux.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-23 15:35:37 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-23 15:35:37 +0100
commitda4c1c92270b02b039cd9da08c9addc38ec47b4d (patch)
tree6bd3eb9bb263b04bf7a352f035d0a3c6fcce265a /gst/qtdemux/qtdemux.c
parent0d9dccee4f4a920e237525f11fa57e849b04bb73 (diff)
qtdemux: don't leak cover art
Diffstat (limited to 'gst/qtdemux/qtdemux.c')
-rw-r--r--gst/qtdemux/qtdemux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 368f3429..0b7eaf9a 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -4821,6 +4821,7 @@ qtdemux_tag_add_covr (GstQTDemux * qtdemux, const char *tag1, const char *dummy,
GST_DEBUG_OBJECT (qtdemux, "adding tag size %d", len - 16);
gst_tag_list_add (qtdemux->tag_list, GST_TAG_MERGE_REPLACE,
tag1, buf, NULL);
+ gst_buffer_unref (buf);
}
}
}