diff options
author | Fabian Keil <fk@fabiankeil.de> | 2012-11-25 18:34:01 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-11-26 15:28:53 +0100 |
commit | 0683adbf50a99f0917c74cd3c5def77254ba9258 (patch) | |
tree | 931c3a00a05029872a9242ad282e3e0fd7684416 /lib/http.c | |
parent | 68e2c9a85faca7708fdb0a09c7c3278fea75f98b (diff) |
Remove stray CRLF in chunk-encoded content-free request bodies
.. that are sent when auth-negotiating before a chunked
upload or when setting the 'Transfer-Encoding: chunked'
header and intentionally sending no content.
Adjust test565 and test1333 accordingly.
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/lib/http.c b/lib/http.c index 4eee83221..965b37503 100644 --- a/lib/http.c +++ b/lib/http.c @@ -2484,15 +2484,19 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) if(postsize) { /* Append the POST data chunky-style */ result = Curl_add_bufferf(req_buffer, "%x\r\n", (int)postsize); - if(CURLE_OK == result) + if(CURLE_OK == result) { result = Curl_add_buffer(req_buffer, data->set.postfields, (size_t)postsize); + if(CURLE_OK == result) + result = Curl_add_buffer(req_buffer, "\r\n", 2); + included_body = postsize + 2; + } } if(CURLE_OK == result) result = Curl_add_buffer(req_buffer, - "\x0d\x0a\x30\x0d\x0a\x0d\x0a", 7); - /* CR LF 0 CR LF CR LF */ - included_body = postsize + 7; + "\x30\x0d\x0a\x0d\x0a", 5); + /* 0 CR LF CR LF */ + included_body += 5; } if(result) return result; @@ -2526,8 +2530,8 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) /* Chunky upload is selected and we're negotiating auth still, send end-of-data only */ result = Curl_add_buffer(req_buffer, - "\x0d\x0a\x30\x0d\x0a\x0d\x0a", 7); - /* CR LF 0 CR LF CR LF */ + "\x30\x0d\x0a\x0d\x0a", 5); + /* 0 CR LF CR LF */ if(result) return result; } |