mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
tsdemux: Don't leak a taglist if a taglist has already been created
https://bugzilla.gnome.org/show_bug.cgi?id=776244
This commit is contained in:
parent
0489f4eac5
commit
b5791efcc0
1 changed files with 3 additions and 1 deletions
|
@ -1243,7 +1243,9 @@ mpegts_base_get_tags_from_eit (MpegTSBase * base, GstMpegtsSection * section)
|
|||
|
||||
if (gst_mpegts_descriptor_parse_dvb_short_event (desc, NULL, &name,
|
||||
&text)) {
|
||||
program->tags = gst_tag_list_new_empty ();
|
||||
if (!program->tags)
|
||||
program->tags = gst_tag_list_new_empty ();
|
||||
|
||||
if (name) {
|
||||
gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
|
||||
GST_TAG_TITLE, name, NULL);
|
||||
|
|
Loading…
Reference in a new issue