conn: always set bits.close with connclose()

Closes #4690
This commit is contained in:
Daniel Stenberg 2019-12-09 12:03:05 +01:00
parent 35c7aac3c6
commit c7bc689fc3
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 4 additions and 3 deletions

View file

@ -639,7 +639,7 @@ static CURLcode multi_done(struct Curl_easy *data,
) || conn->bits.close
|| (premature && !(conn->handler->flags & PROTOPT_STREAM))) {
CURLcode res2;
conn->bits.close = TRUE; /* forcibly prevents reuse */
connclose(conn, "disconnecting");
CONN_UNLOCK(data);
res2 = Curl_disconnect(data, conn, premature);