From: Edward Hervey Date: Thu, 6 Jan 2011 11:49:43 +0000 (+0100) Subject: flacparse: Fix unitialized variable on macosx X-Git-Tag: RELEASE-0.10.29~293 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fbdfa07a8564684d4864916b9a20f902adba86e;p=platform%2Fupstream%2Fgst-plugins-good.git flacparse: Fix unitialized variable on macosx --- diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c index 0d21c4c..9243a0b 100644 --- a/gst/audioparsers/gstflacparse.c +++ b/gst/audioparsers/gstflacparse.c @@ -898,7 +898,7 @@ static void gst_flac_parse_process_seektable (GstFlacParse * flacparse, gint64 boffset) { GstByteReader br; - gint64 offset, samples; + gint64 offset = 0, samples = 0; GST_DEBUG_OBJECT (flacparse, "parsing seektable; base offset %" G_GINT64_FORMAT, boffset);