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,6 +726,7 @@ vorbis_handle_comment_packet (GstVorbisDec * vd, ogg_packet * packet)
vd->taglist = gst_tag_list_new (); vd->taglist = gst_tag_list_new ();
} }
if (encoder) { if (encoder) {
if (encoder[0])
gst_tag_list_add (vd->taglist, GST_TAG_MERGE_REPLACE, gst_tag_list_add (vd->taglist, GST_TAG_MERGE_REPLACE,
GST_TAG_ENCODER, encoder, NULL); GST_TAG_ENCODER, encoder, NULL);
g_free (encoder); g_free (encoder);