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 3a39d7823f
commit 7661d48e87

View file

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