summaryrefslogtreecommitdiff
path: root/server/util_filter.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2018-08-13 12:54:30 +0000
committerYann Ylavic <ylavic@apache.org>2018-08-13 12:54:30 +0000
commita920a90838f4ad5b9b8460e539b250e2c4b7cf2d (patch)
tree85bc5a23d6722427e7dc8db20310caca1842b82d /server/util_filter.c
parent4176ecb14212543625ee9af15f00a09ba7d04c13 (diff)
downloadhttpd-a920a90838f4ad5b9b8460e539b250e2c4b7cf2d.tar.gz
Axe some redundant conditions. PR 62549.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1837941 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_filter.c')
-rw-r--r--server/util_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util_filter.c b/server/util_filter.c
index e0c6ac54b5..e2952958da 100644
--- a/server/util_filter.c
+++ b/server/util_filter.c
@@ -824,7 +824,7 @@ AP_DECLARE(apr_status_t) ap_filter_reinstate_brigade(ap_filter_t *f,
(APR_BRIGADE_EMPTY(bb) ? "empty" : "full"),
f->frec->name);
- if (f->bb && !APR_BRIGADE_EMPTY(f->bb)) {
+ if (f->bb) {
APR_BRIGADE_PREPEND(bb, f->bb);
}
if (!flush_upto) {