From: Wim Taymans Date: Tue, 3 Jun 2014 20:19:33 +0000 (+0200) Subject: downloadbuffer: fix uninitialized variable X-Git-Tag: 1.3.3~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f446280740f8b54c298cd2c4707a76694a7aebcc;p=platform%2Fupstream%2Fgstreamer.git downloadbuffer: fix uninitialized variable --- diff --git a/plugins/elements/gstdownloadbuffer.c b/plugins/elements/gstdownloadbuffer.c index 58e0722..db3be22 100644 --- a/plugins/elements/gstdownloadbuffer.c +++ b/plugins/elements/gstdownloadbuffer.c @@ -1475,6 +1475,7 @@ gst_download_buffer_handle_src_query (GstPad * pad, GstObject * parent, /* fill out the buffered ranges */ start = offset = 0; stop = -1; + estimated_total = -1; while (gst_sparse_file_get_range_after (dlbuf->file, offset, &range_start, &range_stop)) { gboolean current_range; @@ -1492,8 +1493,6 @@ gst_download_buffer_handle_src_query (GstPad * pad, GstObject * parent, /* calculate remaining and total download time */ if (duration >= range_stop && avg_in > 0.0) estimated_total = ((duration - range_stop) * 1000) / avg_in; - else - estimated_total = -1; } else current_range = FALSE;