mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
wavparse: Initialize uninitialized variable
This commit is contained in:
parent
acd0c1ff90
commit
715eb33d24
1 changed files with 1 additions and 1 deletions
|
@ -1162,7 +1162,7 @@ static GstFlowReturn
|
||||||
gst_wavparse_stream_headers (GstWavParse * wav)
|
gst_wavparse_stream_headers (GstWavParse * wav)
|
||||||
{
|
{
|
||||||
GstFlowReturn res = GST_FLOW_OK;
|
GstFlowReturn res = GST_FLOW_OK;
|
||||||
GstBuffer *buf;
|
GstBuffer *buf = NULL;
|
||||||
gst_riff_strf_auds *header = NULL;
|
gst_riff_strf_auds *header = NULL;
|
||||||
guint32 tag, size;
|
guint32 tag, size;
|
||||||
gboolean gotdata = FALSE;
|
gboolean gotdata = FALSE;
|
||||||
|
|
Loading…
Reference in a new issue