From 146178a9df83de1cfc345771b4c6eceb21ea700e Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Fri, 22 Jun 2018 00:13:29 +0200
Subject: [PATCH] ConnectionExists: make sure conn->data is set when "taking" a
 connection

Follow-up to 2c15693.

Bug #2674
Closes #2675
---
 lib/url.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/url.c b/lib/url.c
index 0cab0a303d..f1a6e8db48 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! */
-- 
GitLab