summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-06-22 00:13:29 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-06-22 00:13:29 +0200
commitfa912042be37bf0af0bac9031e8d4c200196c3a8 (patch)
tree999e942f4c37a094c0b1c0d76f4421b57cdcd404
parent59b284b6ebdda679e9fa6bb549015f994f4e79c8 (diff)
downloadcurl-bagder/connection-exists-data.tar.gz
ConnectionExists: make sure conn->data is set when "taking" a connectionbagder/connection-exists-data
Follow-up to 2c15693. Fixes #2674
-rw-r--r--lib/url.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/url.c b/lib/url.c
index 0cab0a303..f1a6e8db4 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1465,6 +1465,7 @@ ConnectionExists(struct Curl_easy *data,
if(chosen) {
/* mark it as used before releasing the lock */
chosen->inuse = TRUE;
+ chosen->data = data; /* own it! */
Curl_conncache_unlock(needle);
*usethis = chosen;
return TRUE; /* yes, we found one to use! */