From b47b053e54e4e6cfa49c06435b76190ebd00d860 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 5 Jun 2002 21:29:20 +0000 Subject: Gustaf Hui fixed curl_multi_remove_handle() to prevent a potential crash --- lib/multi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/multi.c b/lib/multi.c index 3fcfb8be0..d6ede8235 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -179,6 +179,9 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle, /* If the 'state' is not INIT or COMPLETED, we might need to do something nice to put the easy_handle in a good known state when this returns. */ + /* clear out the usage of the shared DNS cache */ + easy->easy_handle->hostcache = NULL; + /* make the previous node point to our next */ if(easy->prev) easy->prev->next = easy->next; -- cgit v1.2.3