]> granicus.if.org Git - apache/commitdiff
mod_http2: fixed typo re unintended double negate
authorStefan Eissing <icing@apache.org>
Mon, 2 May 2016 08:35:21 +0000 (08:35 +0000)
committerStefan Eissing <icing@apache.org>
Mon, 2 May 2016 08:35:21 +0000 (08:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1741934 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_bucket_beam.c

index 2e1bfec5537a825ff62cf9d763924a6e28e1b9ce..f540b61ee9b3fcbe1d5dba832d8d46f8986b8c6f 100644 (file)
@@ -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;