From 732f21f4190369193cdb2b80735a767b7d3ea8b5 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sun, 7 Jul 2002 14:17:00 +0000 Subject: [PATCH] Don't free uninitialized pointers Original commit message from CVS: Don't free uninitialized pointers --- ext/lame/gstlame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/lame/gstlame.c b/ext/lame/gstlame.c index 58c2b9d..e7f9d5d 100644 --- a/ext/lame/gstlame.c +++ b/ext/lame/gstlame.c @@ -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; -- 2.7.4