CURLOPT_WRITEFUNCTION.3: fix typo

Reported-by: Osaila@users.noreply.github.com

Fixes https://github.com/curl/curl/issues/10839
This commit is contained in:
Jay Satiro 2023-03-25 15:54:02 -04:00
parent 43e71fe0fc
commit e5588ced30

View 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);
}