]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLOPT_WRITEFUNCTION.3: fix typo
authorJay Satiro <raysatiro@yahoo.com>
Sat, 25 Mar 2023 19:54:02 +0000 (15:54 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Sat, 25 Mar 2023 19:54:02 +0000 (15:54 -0400)
Reported-by: Osaila@users.noreply.github.com
Fixes https://github.com/curl/curl/issues/10839

docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3

index c9519a8c2489409692c507ece45925eff6fe99b5..ddf6546e69a04f176189a72c2af1841378da462f 100644 (file)
@@ -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);
 }