Skip to content
Snippets Groups Projects
Commit 0aabfd99 authored by Yang Tse's avatar Yang Tse
Browse files

curl_multi_remove_handle: fix memory leak triggered with CURLOPT_RESOLVE

parent 14b77db1
No related branches found
No related tags found
No related merge requests found
...@@ -649,6 +649,10 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle, ...@@ -649,6 +649,10 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
} }
if(easy->easy_handle->dns.hostcachetype == HCACHE_MULTI) { if(easy->easy_handle->dns.hostcachetype == HCACHE_MULTI) {
if(multi->num_easy == 1) {
Curl_hostcache_destroy(easy->easy_handle);
multi->hostcache = NULL;
}
/* clear out the usage of the shared DNS cache */ /* clear out the usage of the shared DNS cache */
easy->easy_handle->dns.hostcache = NULL; easy->easy_handle->dns.hostcache = NULL;
easy->easy_handle->dns.hostcachetype = HCACHE_NONE; easy->easy_handle->dns.hostcachetype = HCACHE_NONE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment