Fix a 'vorbistag might be used uninitialised' warning

Original commit message from CVS:
Fix a 'vorbistag might be used uninitialised' warning
This commit is contained in:
Jan Schmidt 2003-11-26 12:15:57 +00:00
parent 94e402ef83
commit e286156c66

View file

@ -474,7 +474,8 @@ gst_vorbisenc_init (VorbisEnc * vorbisenc)
static void
gst_vorbisenc_metadata_set1 (const GstTagList *list, const gchar *tag, gpointer vorbisenc)
{
gchar *vorbistag, *vorbisvalue;
gchar *vorbistag = NULL;
gchar *vorbisvalue = NULL;
guint i, count;
VorbisEnc *enc = GST_VORBISENC (vorbisenc);