Skip to content
Snippets Groups Projects
Commit 2de00283 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

make sure the dns cache pointers in the easy handles are NULLed

parent 35d04c53
No related branches found
No related tags found
No related merge requests found
......@@ -383,6 +383,9 @@ CURLMcode curl_multi_cleanup(CURLM *multi_handle)
easy = multi->easy.next;
while(easy) {
nexteasy=easy->next;
/* clear out the usage of the shared DNS cache */
easy->easy_handle->hostcache = NULL;
free(easy);
easy = nexteasy;
}
......
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