From: Edward Hervey Date: Tue, 12 Jan 2010 17:55:53 +0000 (+0100) Subject: flacparse: Initialize variables. X-Git-Tag: 1.19.3~509^2~7136^2~974 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85ceeaefe50962e7ec57ef642c671390f17419fe;p=platform%2Fupstream%2Fgstreamer.git flacparse: Initialize variables. Fixes build on $#@*( macosx --- diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c index 672a9b4..4e2fe53 100644 --- a/gst/audioparsers/gstflacparse.c +++ b/gst/audioparsers/gstflacparse.c @@ -863,8 +863,8 @@ gst_flac_parse_handle_picture (GstFlacParse * flacparse, GstBuffer * buffer) { GstByteReader reader = GST_BYTE_READER_INIT_FROM_BUFFER (buffer); const guint8 *data = GST_BUFFER_DATA (buffer); - guint32 img_len, img_type; - guint32 img_mimetype_len, img_description_len; + guint32 img_len = 0, img_type = 0; + guint32 img_mimetype_len = 0, img_description_len = 0; if (!gst_byte_reader_get_uint32_be (&reader, &img_type)) goto error;