mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +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;
|
||||
gboolean result = TRUE;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
guint framesize;
|
||||
guint framesize = 0;
|
||||
|
||||
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
||||
|
||||
|
|
Loading…
Reference in a new issue