mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:43:31 +03:00
compiler warnings: potentially uninitialized variables
... pointed out by MSVC2013 Bug: http://curl.haxx.se/bug/view.cgi?id=1391
This commit is contained in:
parent
ca2aa61b66
commit
8ffe6f5b57
3 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue