From e5588ced30f6a8c40b46fcfb7e5cd3ab07c46b6c Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Sat, 25 Mar 2023 15:54:02 -0400 Subject: [PATCH] CURLOPT_WRITEFUNCTION.3: fix typo Reported-by: Osaila@users.noreply.github.com Fixes https://github.com/curl/curl/issues/10839 --- docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 b/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 index c9519a8c24..ddf6546e69 100644 --- a/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 +++ b/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 @@ -118,7 +118,7 @@ if (curl_handle) res = curl_easy_perform(curl_handle); /* remember to free the buffer */ - free(chunk.response) + free(chunk.response); curl_easy_cleanup(curl_handle); } -- 2.47.3