From f446280740f8b54c298cd2c4707a76694a7aebcc Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 3 Jun 2014 22:19:33 +0200 Subject: [PATCH] downloadbuffer: fix uninitialized variable --- plugins/elements/gstdownloadbuffer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.7.4