mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
Don't free uninitialized pointers
Original commit message from CVS: Don't free uninitialized pointers
This commit is contained in:
parent
bf5b28df37
commit
732f21f419
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