vorbisdec: Check for empty tag strings. Fixes #588724

This commit is contained in:
Edward Hervey 2009-07-16 09:32:46 +02:00
parent 3886a83f0e
commit 47d40c2553

View file

@ -726,8 +726,9 @@ vorbis_handle_comment_packet (GstVorbisDec * vd, ogg_packet * packet)
vd->taglist = gst_tag_list_new ();
}
if (encoder) {
gst_tag_list_add (vd->taglist, GST_TAG_MERGE_REPLACE,
GST_TAG_ENCODER, encoder, NULL);
if (encoder[0])
gst_tag_list_add (vd->taglist, GST_TAG_MERGE_REPLACE,
GST_TAG_ENCODER, encoder, NULL);
g_free (encoder);
}
gst_tag_list_add (vd->taglist, GST_TAG_MERGE_REPLACE,