diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-06-24 11:21:26 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-06-24 23:11:37 +0200 |
commit | 265f7f42f678db4157e7d6f7f987aba01e71cfeb (patch) | |
tree | 94f2263232e44b630a95e5b4d16a2e139d3476b6 /lib/http.c | |
parent | d331227cf0a0f4a1ae4b97081ed2fd2c55164489 (diff) | |
download | curl-265f7f42f678db4157e7d6f7f987aba01e71cfeb.tar.gz |
http2: call done_sending on end of upload
To make sure a HTTP/2 stream registers the end of stream.
Bug #4043 made me find this problem but this fix doesn't correct the
reported issue.
Closes #4068
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index a80e80157..d01e1bfdb 100644 --- a/lib/http.c +++ b/lib/http.c @@ -3511,8 +3511,10 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data, else { infof(data, "HTTP error before end of send, stop sending\n"); streamclose(conn, "Stop sending data before everything sent"); + result = Curl_done_sending(conn, k); + if(result) + return result; k->upload_done = TRUE; - k->keepon &= ~KEEP_SEND; /* don't send */ if(data->state.expect100header) k->exp100 = EXP100_FAILED; } |