From: Daniel Stenberg Date: Thu, 28 Nov 2002 15:48:54 +0000 (+0000) Subject: fix the hash init to call the correct dns cleanup function X-Git-Tag: curl-7_10_3~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d64dd779931482c614c7cb71d8f9ad81f2417479;p=curl fix the hash init to call the correct dns cleanup function --- diff --git a/lib/multi.c b/lib/multi.c index f901f3a0f..8548354bd 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -313,9 +313,8 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles) easy->easy_handle->hostcache = Curl_global_host_cache_get(); } else { - if (multi->hostcache == NULL) { - multi->hostcache = Curl_hash_alloc(7, Curl_freeaddrinfo); - } + if (multi->hostcache == NULL) + multi->hostcache = Curl_hash_alloc(7, Curl_freednsinfo); easy->easy_handle->hostcache = multi->hostcache; }