diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-09 11:53:54 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-09 15:30:09 +0100 |
commit | ee263de7a378e701f15e58879f36fdcfe8742006 (patch) | |
tree | 5fdf1aafe027c7e659cfaa989f429b5159645a79 /lib/http.c | |
parent | 9e891ff54de34d0e4c9aec502eb53e5b64a6dd1f (diff) | |
download | curl-ee263de7a378e701f15e58879f36fdcfe8742006.tar.gz |
conncache: fix multi-thread use of shared connection cache
It could accidentally let the connection get used by more than one
thread, leading to double-free and more.
Reported-by: Christopher Reid
Fixes #4544
Closes #4557
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 885704560..35d2e9fb0 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1617,7 +1617,7 @@ CURLcode Curl_http_done(struct connectdata *conn, Curl_add_buffer_free(&http->send_buffer); } - Curl_http2_done(conn, premature); + Curl_http2_done(data, premature); Curl_quic_done(data, premature); Curl_mime_cleanpart(&http->form); |