diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-03-14 18:17:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-14 18:19:51 +0100 |
commit | 0cf649d9cc550af0ef5c9577d38c800be167f373 (patch) | |
tree | 4a3ce022918cc72197aa2974c548111e7ba251b7 /lib | |
parent | 0911b963995b792ccd207baa8741785315d768eb (diff) | |
download | curl-0cf649d9cc550af0ef5c9577d38c800be167f373.tar.gz |
http2: detect prematures close without data transfered
... by using the regular Curl_http_done() method which checks for
that. This makes test 1801 fail consistently with error 56 (which seems
fine) to that test is also updated here.
Reported-by: Ben Darnell
Bug: https://github.com/bagder/curl/issues/166
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http2.c b/lib/http2.c index 89bc57d5e..ea20b0a11 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -102,7 +102,7 @@ const struct Curl_handler Curl_handler_http2 = { "HTTP2", /* scheme */ ZERO_NULL, /* setup_connection */ Curl_http, /* do_it */ - ZERO_NULL, /* done */ + Curl_http_done, /* done */ ZERO_NULL, /* do_more */ ZERO_NULL, /* connect_it */ ZERO_NULL, /* connecting */ @@ -122,7 +122,7 @@ const struct Curl_handler Curl_handler_http2_ssl = { "HTTP2", /* scheme */ ZERO_NULL, /* setup_connection */ Curl_http, /* do_it */ - ZERO_NULL, /* done */ + Curl_http_done, /* done */ ZERO_NULL, /* do_more */ ZERO_NULL, /* connect_it */ ZERO_NULL, /* connecting */ |