]> granicus.if.org Git - curl/commitdiff
Gustaf Hui fixed curl_multi_remove_handle() to prevent a potential crash
authorDaniel Stenberg <daniel@haxx.se>
Wed, 5 Jun 2002 21:29:20 +0000 (21:29 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 5 Jun 2002 21:29:20 +0000 (21:29 +0000)
lib/multi.c

index 3fcfb8be02e378e34869b395b80b69752e9e922d..d6ede82358b00a1ca30a30eae1bad55eb7bd66be 100644 (file)
@@ -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;