1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00
This commit is contained in:
Daniel Stenberg 2004-05-10 10:52:29 +00:00
parent a2ecdf4249
commit 1f798affb9

View File

@ -1886,7 +1886,7 @@ CURLcode Curl_http(struct connectdata *conn)
This limit is no magic limit but only set to prevent really huge This limit is no magic limit but only set to prevent really huge
POSTs to get the data duplicated with malloc() and family. */ POSTs to get the data duplicated with malloc() and family. */
result == add_buffer(req_buffer, "\r\n", 2); /* end of headers! */ result = add_buffer(req_buffer, "\r\n", 2); /* end of headers! */
if(result) if(result)
return result; return result;