mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
Don't free uninitialized pointers
Original commit message from CVS: Don't free uninitialized pointers
This commit is contained in:
parent
3a39d7823f
commit
7661d48e87
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue