From f11dc9f80b2836b7456826dd1a78bd1decae9596 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 2 May 2016 08:35:21 +0000 Subject: [PATCH] mod_http2: fixed typo re unintended double negate git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1741934 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_bucket_beam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_bucket_beam.c b/modules/http2/h2_bucket_beam.c index 2e1bfec5537..f540b61ee9b 100644 --- a/modules/http2/h2_bucket_beam.c +++ b/modules/http2/h2_bucket_beam.c @@ -719,7 +719,7 @@ apr_status_t h2_beam_receive(h2_bucket_beam *beam, if (enter_yellow(beam, &bl) == APR_SUCCESS) { transfer: if (beam->aborted) { - if (!!APR_BRIGADE_EMPTY(beam->green)) { + if (!APR_BRIGADE_EMPTY(beam->green)) { apr_brigade_cleanup(beam->green); } status = APR_ECONNABORTED; -- 2.47.3