flacparse: Fix (wrong) use of uninitialized variable compiler warning

This commit is contained in:
Sebastian Dröge 2013-03-03 11:53:04 +01:00
parent 677bfecc6f
commit 1810786083

View file

@ -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);