diff options
author | selivni <selivni@yandex-team.ru> | 2022-02-10 16:47:47 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:47 +0300 |
commit | fd7c757f129e0df24dd53f64c9b67053da4e8799 (patch) | |
tree | 1f07ef08e24275f10c9d0ec975c71c62abbc3d8d /contrib/libs/curl/lib/multi.c | |
parent | 0148ac5e2009a411becc605faa1e6a8801535649 (diff) | |
download | ydb-fd7c757f129e0df24dd53f64c9b67053da4e8799.tar.gz |
Restoring authorship annotation for <selivni@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/curl/lib/multi.c')
-rw-r--r-- | contrib/libs/curl/lib/multi.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/libs/curl/lib/multi.c b/contrib/libs/curl/lib/multi.c index f1c9e4dbfb..ee2d26842e 100644 --- a/contrib/libs/curl/lib/multi.c +++ b/contrib/libs/curl/lib/multi.c @@ -557,10 +557,10 @@ static CURLcode multi_done(struct Curl_easy *data, conn->data = data; /* ensure the connection uses this transfer now */ - /* Cancel the resolver (but not dns_entry yet). We used to call - Curl_resolver_kill here but that blocks waiting for incomplete resolve - threads (eg getaddrinfo has not returned), which may take a while. */ - Curl_resolver_cancel(conn); + /* Cancel the resolver (but not dns_entry yet). We used to call + Curl_resolver_kill here but that blocks waiting for incomplete resolve + threads (eg getaddrinfo has not returned), which may take a while. */ + Curl_resolver_cancel(conn); /* Cleanup possible redirect junk */ Curl_safefree(data->req.newurl); @@ -599,9 +599,9 @@ static CURLcode multi_done(struct Curl_easy *data, Curl_detach_connnection(data); if(CONN_INUSE(conn)) { /* Stop if still used. */ - /* conn->data must not remain pointing to this transfer since it is going - away! Find another to own it! */ - conn->data = conn->easyq.head->ptr; + /* conn->data must not remain pointing to this transfer since it is going + away! Find another to own it! */ + conn->data = conn->easyq.head->ptr; CONNCACHE_UNLOCK(data); DEBUGF(infof(data, "Connection still in use %zu, " "no more multi_done now!\n", |