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

This commit is contained in:
Daniel Stenberg 2002-05-02 18:07:38 +00:00
parent 35d04c5398
commit 2de0028349

View file

@ -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;
}