summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-02-24 16:32:04 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-02-24 16:32:04 +0100
commit62f41d7f1fadabd0886204b20d069628d7878bd8 (patch)
treec21a6d70e1b019834b9c191f972651baff3f1ce8
parent47e540df8f32c8f7298ab1bc96b0087b5738c257 (diff)
downloadcurl-bagder/multi-done-after-connect-timeout.tar.gz
multi: call multi_done on connect timeoutsbagder/multi-done-after-connect-timeout
Failing to do so would make the CURLINFO_TOTAL_TIME timeout to not get updated correctly and could end up getting reported to the users to be completely wrong (way too small). Reported-by: accountantM on github Fixes #3602
-rw-r--r--lib/multi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 521262b2b..06aaed26a 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -1606,7 +1606,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
}
else if(result) {
/* failure detected */
- /* Just break, the cleaning up is handled all in one place */
+ Curl_posttransfer(data);
+ multi_done(data, result, TRUE);
stream_error = TRUE;
break;
}