From: Sebastian Dröge Date: Sun, 3 Mar 2013 10:53:04 +0000 (+0100) Subject: flacparse: Fix (wrong) use of uninitialized variable compiler warning X-Git-Tag: 1.1.1~307 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=181078608310c772e414f8b70dca724768499bde;p=platform%2Fupstream%2Fgst-plugins-good.git flacparse: Fix (wrong) use of uninitialized variable compiler warning --- diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c index 777aeab..c8ecf80 100644 --- a/gst/audioparsers/gstflacparse.c +++ b/gst/audioparsers/gstflacparse.c @@ -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);