From: Jay Satiro Date: Sat, 25 Mar 2023 19:54:02 +0000 (-0400) Subject: CURLOPT_WRITEFUNCTION.3: fix typo X-Git-Tag: curl-8_1_0~301 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5588ced30f6a8c40b46fcfb7e5cd3ab07c46b6c;p=thirdparty%2Fcurl.git CURLOPT_WRITEFUNCTION.3: fix typo Reported-by: Osaila@users.noreply.github.com Fixes https://github.com/curl/curl/issues/10839 --- 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); }