From: Edward Hervey Date: Wed, 25 Jan 2012 15:58:12 +0000 (+0100) Subject: flv: Fix unitialized variables X-Git-Tag: RELEASE-0.11.1~99 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03b9966bc0f5761e87451f745a43804eb18b4700;p=platform%2Fupstream%2Fgst-plugins-good.git flv: Fix unitialized variables (or rather circumvent issues with naive compilers ...) --- diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c index 523317e..af51773 100644 --- a/gst/flv/gstflvdemux.c +++ b/gst/flv/gstflvdemux.c @@ -127,7 +127,7 @@ gst_flv_demux_parse_and_add_index_entry (GstFlvDemux * demux, GstClockTime ts, if (entry) { #ifndef GST_DISABLE_GST_DEBUG - gint64 time; + gint64 time = 0; gboolean key; gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &time); @@ -2197,7 +2197,7 @@ gst_flv_demux_seek_to_prev_keyframe (GstFlvDemux * demux) GST_FORMAT_BYTES, demux->from_offset - 1); if (entry) { - gint64 bytes, time; + gint64 bytes = 0, time = 0; gst_index_entry_assoc_map (entry, GST_FORMAT_BYTES, &bytes); gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &time);