Don't free uninitialized pointers

Original commit message from CVS:
Don't free uninitialized pointers
This commit is contained in:
Wim Taymans 2002-07-07 14:17:00 +00:00
parent bf5b28df37
commit 732f21f419

View file

@ -675,7 +675,7 @@ gst_lame_chain (GstPad *pad, GstBuffer *buf)
{
GstLame *lame;
GstBuffer *outbuf;
gchar *mp3_data;
gchar *mp3_data = NULL;
gint mp3_buffer_size, mp3_size = 0;
gboolean eos = FALSE;