]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
build: fix for CURL_DISABLE_DOH
authorWyatt O'Day <wyatt@wyday.com>
Wed, 6 Nov 2019 22:39:49 +0000 (17:39 -0500)
committerJay Satiro <raysatiro@yahoo.com>
Thu, 7 Nov 2019 04:48:10 +0000 (23:48 -0500)
Fixes https://github.com/curl/curl/issues/4565
Closes https://github.com/curl/curl/pull/4566

lib/url.c

index 8285474fd724af8d78f2d6bb44931d76598ffcf2..4f4120146adc8d3ed402df39c159ce759407ac0b 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -403,9 +403,11 @@ CURLcode Curl_close(struct Curl_easy **datap)
     Curl_share_unlock(data, CURL_LOCK_DATA_SHARE);
   }
 
+#ifndef CURL_DISABLE_DOH
   free(data->req.doh.probe[0].serverdoh.memory);
   free(data->req.doh.probe[1].serverdoh.memory);
   curl_slist_free_all(data->req.doh.headers);
+#endif
 
   /* destruct wildcard structures if it is needed */
   Curl_wildcard_dtor(&data->wildcard);
@@ -1987,8 +1989,11 @@ void Curl_free_request_state(struct Curl_easy *data)
 {
   Curl_safefree(data->req.protop);
   Curl_safefree(data->req.newurl);
+
+#ifndef CURL_DISABLE_DOH
   Curl_close(&data->req.doh.probe[0].easy);
   Curl_close(&data->req.doh.probe[1].easy);
+#endif
 }