mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
flvdemux: Fix unref assertion failure
Fix unref assertion failure https://bugzilla.gnome.org/show_bug.cgi?id=767424
This commit is contained in:
parent
5328378132
commit
4e23d206b9
1 changed files with 1 additions and 1 deletions
|
@ -402,8 +402,8 @@ gst_flv_demux_parse_metadata_item (GstFlvDemux * demux, GstByteReader * reader,
|
|||
} else {
|
||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||
GST_TAG_DATE_TIME, dt, NULL);
|
||||
gst_date_time_unref (dt);
|
||||
}
|
||||
gst_date_time_unref (dt);
|
||||
} else if (!strcmp (tag_name, "creator")) {
|
||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||
GST_TAG_ARTIST, s, NULL);
|
||||
|
|
Loading…
Reference in a new issue