Skip to content
Snippets Groups Projects
Commit 7b23eff9 authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Preserve previous status in Curl_http_done().

parent 67ff8e3e
No related branches found
No related tags found
No related merge requests found
......@@ -1274,7 +1274,6 @@ CURLcode Curl_http_done(struct connectdata *conn,
{
struct SessionHandle *data;
struct HTTP *http;
(void)status; /* no use for us */
data=conn->data;
http=conn->proto.http;
......@@ -1291,7 +1290,7 @@ CURLcode Curl_http_done(struct connectdata *conn,
free(buff->buffer);
free(buff);
http->send_buffer = NULL; /* cleaer the pointer */
http->send_buffer = NULL; /* clear the pointer */
}
if(HTTPREQ_POST_FORM == data->set.httpreq) {
......@@ -1307,6 +1306,9 @@ CURLcode Curl_http_done(struct connectdata *conn,
else if(HTTPREQ_PUT == data->set.httpreq)
conn->bytecount = http->readbytecount + http->writebytecount;
if (status != CURLE_OK)
return (status);
if(!conn->bits.retry &&
((http->readbytecount +
conn->headerbytecount -
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment