From: Stefan Eissing Date: Fri, 18 Mar 2016 15:41:12 +0000 (+0000) Subject: Merge of r1735611 from trunk: X-Git-Tag: 2.4.19~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f5d52d07c1aad590e2399d40afe2ac9f7476922;p=apache Merge of r1735611 from trunk: mod_http2: refrain from unnecessary flushes on master connection git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1735620 13f79535-47bb-0310-9956-ffa450edef68 --- 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; }