diff options
author | Stefan Eissing <icing@apache.org> | 2021-10-14 17:26:59 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-10-14 17:26:59 +0200 |
commit | 1a303fdb6f0d938eccfa7a6e7811d08bd2432d4a (patch) | |
tree | a90a50f6b44f2c3b5470f6ba372b698272261e4b /modules/http2/h2_stream.c | |
parent | *) mod_http2: disabling 400_20 again, seeing if 401_31 stays fixed. (diff) | |
download | apache2-1a303fdb6f0d938eccfa7a6e7811d08bd2432d4a.tar.xz apache2-1a303fdb6f0d938eccfa7a6e7811d08bd2432d4a.zip |
* mod_http2: hopeful (as always) fix for the stalling in 400_20.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894252 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_stream.c')
-rw-r--r-- | modules/http2/h2_stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http2/h2_stream.c b/modules/http2/h2_stream.c index ef9e88fffc..b29a7d57af 100644 --- a/modules/http2/h2_stream.c +++ b/modules/http2/h2_stream.c @@ -999,6 +999,7 @@ static apr_status_t buffer_output_process_headers(h2_stream *stream) && !h2_config_sgeti(stream->session->s, H2_CONF_EARLY_HINTS)) { /* suppress sending this to the client, it might have triggered * pushes and served its purpose nevertheless */ + rv = APR_SUCCESS; goto cleanup; } if (h2_headers_are_final_response(headers)) { |