From 8ffe6f5b5761aa77b3e5eae236475b173e9efd2f Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 4 Jul 2014 18:26:57 +0200 Subject: compiler warnings: potentially uninitialized variables ... pointed out by MSVC2013 Bug: http://curl.haxx.se/bug/view.cgi?id=1391 --- lib/easy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/easy.c') diff --git a/lib/easy.c b/lib/easy.c index 078e9cb1e..160712e8f 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -674,7 +674,7 @@ static CURLcode easy_transfer(CURLM *multi) curl_multi_wait() without any filedescriptors */ while(!done && !mcode) { - int still_running; + int still_running = 0; int ret; before = curlx_tvnow(); -- cgit v1.2.3