mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +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,
|
if (gst_mpegts_descriptor_parse_dvb_short_event (desc, NULL, &name,
|
||||||
&text)) {
|
&text)) {
|
||||||
program->tags = gst_tag_list_new_empty ();
|
if (!program->tags)
|
||||||
|
program->tags = gst_tag_list_new_empty ();
|
||||||
|
|
||||||
if (name) {
|
if (name) {
|
||||||
gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
|
gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
|
||||||
GST_TAG_TITLE, name, NULL);
|
GST_TAG_TITLE, name, NULL);
|
||||||
|
|
Loading…
Reference in a new issue