diff options
author | Stefan Eissing <icing@apache.org> | 2016-04-20 17:17:38 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-04-20 17:17:38 +0200 |
commit | afd1183937a5ceb7d3b6420a6621f1f3356a4594 (patch) | |
tree | 6e969a722f19ba93f878036685c14531f7acc17b /modules/http2/mod_proxy_http2.c | |
parent | fixing h2 supress to inhibit other annnouncements in upgrade: header (diff) | |
download | apache2-afd1183937a5ceb7d3b6420a6621f1f3356a4594.tar.xz apache2-afd1183937a5ceb7d3b6420a6621f1f3356a4594.zip |
mod_http2: elimination of h2_io intermediate stream instances
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1740155 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/mod_proxy_http2.c')
-rw-r--r-- | modules/http2/mod_proxy_http2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index f643265497..05d98aa458 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -377,7 +377,7 @@ static apr_status_t proxy_engine_run(h2_proxy_ctx *ctx) { status = s2; break; } - if (!ctx->next && h2_ihash_is_empty(ctx->session->streams)) { + if (!ctx->next && h2_ihash_empty(ctx->session->streams)) { break; } } |