mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
flacparse: Fix (wrong) use of uninitialized variable compiler warning
This commit is contained in:
parent
677bfecc6f
commit
1810786083
1 changed files with 1 additions and 1 deletions
|
@ -753,7 +753,7 @@ gst_flac_parse_handle_frame (GstBaseParse * parse,
|
||||||
GstMapInfo map;
|
GstMapInfo map;
|
||||||
gboolean result = TRUE;
|
gboolean result = TRUE;
|
||||||
GstFlowReturn ret = GST_FLOW_OK;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
guint framesize;
|
guint framesize = 0;
|
||||||
|
|
||||||
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue