flacparse: Fix (wrong) use of uninitialized variable compiler warning
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 3 Mar 2013 10:53:04 +0000 (11:53 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 3 Mar 2013 10:53:04 +0000 (11:53 +0100)
gst/audioparsers/gstflacparse.c

index 777aeab..c8ecf80 100644 (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);