From ea95444d13b8481f5eddfc795e3b3b30512f0472 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Fri, 18 Mar 2016 15:08:51 +0000 Subject: [PATCH] mod_http2: prohibit unnecessary flushing on master conn git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1735611 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_conn_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_conn_io.c b/modules/http2/h2_conn_io.c index 2b7e769410..59561ecd61 100644 --- a/modules/http2/h2_conn_io.c +++ b/modules/http2/h2_conn_io.c @@ -265,7 +265,7 @@ static apr_status_t h2_conn_io_flush_int(h2_conn_io *io, int flush, int eoc) pass_out_ctx ctx; apr_bucket *b; - if (!flush && io->buflen == 0 && APR_BRIGADE_EMPTY(io->output)) { + if (io->buflen == 0 && APR_BRIGADE_EMPTY(io->output)) { return APR_SUCCESS; } -- 2.50.1