summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2023-03-25 15:54:02 -0400
committerJay Satiro <raysatiro@yahoo.com>2023-03-25 15:54:02 -0400
commite5588ced30f6a8c40b46fcfb7e5cd3ab07c46b6c (patch)
tree900ff6da242f23f420018c620d438e15f465230e /docs
parent43e71fe0fc7833a1c47696d1797044973f8552c0 (diff)
downloadcurl-e5588ced30f6a8c40b46fcfb7e5cd3ab07c46b6c.tar.gz
CURLOPT_WRITEFUNCTION.3: fix typo
Reported-by: Osaila@users.noreply.github.com Fixes https://github.com/curl/curl/issues/10839
Diffstat (limited to 'docs')
-rw-r--r--docs/libcurl/opts/CURLOPT_WRITEFUNCTION.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 b/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3
index c9519a8c2..ddf6546e6 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);
}