]> granicus.if.org Git - curl/commitdiff
Curl_close: clear data->multi_easy on free to avoid use-after-free
authorDaniel Stenberg <daniel@haxx.se>
Thu, 18 Oct 2018 13:07:15 +0000 (15:07 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 29 Oct 2018 07:05:23 +0000 (08:05 +0100)
Regression from b46cfbc068 (7.59.0)
CVE-2018-16840
Reported-by: Brian Carpenter (Geeknik Labs)
Bug: https://curl.haxx.se/docs/CVE-2018-16840.html

lib/url.c

index 723b898065ee9b80419a6ec78049cf7a8d9d44b1..0d5a13f99639b2444a8a1b1eeadf9be2fe036fd0 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -331,10 +331,12 @@ CURLcode Curl_close(struct Curl_easy *data)
        and detach this handle from there. */
     curl_multi_remove_handle(data->multi, data);
 
-  if(data->multi_easy)
+  if(data->multi_easy) {
     /* when curl_easy_perform() is used, it creates its own multi handle to
        use and this is the one */
     curl_multi_cleanup(data->multi_easy);
+    data->multi_easy = NULL;
+  }
 
   /* Destroy the timeout list that is held in the easy handle. It is
      /normally/ done by curl_multi_remove_handle() but this is "just in