summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-19 10:35:25 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-09-20 08:08:02 +0200
commita89aeb54519b3b20d093f0d0b0e650344dc399fd (patch)
treeea9791bff34482a3c04d084095bb5f73104bd32c
parent2d5f76f22f0f9c805ccc9332b1abd757a8be3c99 (diff)
downloadcurl-a89aeb54519b3b20d093f0d0b0e650344dc399fd.tar.gz
tool_operate: removed unused variable 'done'
Fixes warning detected by PVS-Studio Fixes #4374
-rw-r--r--src/tool_operate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c
index 5364e8307..316951869 100644
--- a/src/tool_operate.c
+++ b/src/tool_operate.c
@@ -1968,7 +1968,6 @@ static CURLcode parallel_transfers(struct GlobalConfig *global,
CURLSH *share)
{
CURLM *multi;
- bool done = FALSE;
CURLMcode mcode = CURLM_OK;
CURLcode result = CURLE_OK;
int still_running = 1;
@@ -1985,7 +1984,7 @@ static CURLcode parallel_transfers(struct GlobalConfig *global,
if(result)
return result;
- while(!done && !mcode && (still_running || more_transfers)) {
+ while(!mcode && (still_running || more_transfers)) {
mcode = curl_multi_poll(multi, NULL, 0, 1000, NULL);
if(!mcode)
mcode = curl_multi_perform(multi, &still_running);