From: Xinchen Hui Date: Fri, 29 Sep 2017 03:16:32 +0000 (+0800) Subject: Fixed bug #75267 (possible &/&& mixup) X-Git-Tag: php-7.2.0RC4~40^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fd33c1f20a95c5cdbc7c161708ef0db6156877e;p=php Fixed bug #75267 (possible &/&& mixup) --- diff --git a/ext/opcache/Optimizer/zend_dump.c b/ext/opcache/Optimizer/zend_dump.c index 2167fa6e6b..a207f5e59f 100644 --- a/ext/opcache/Optimizer/zend_dump.c +++ b/ext/opcache/Optimizer/zend_dump.c @@ -690,7 +690,7 @@ static void zend_dump_block_info(const zend_cfg *cfg, int n, uint32_t dump_flags if (b->flags & ZEND_BB_KILL_VAR) { fprintf(stderr, " kill_var"); } - if (!(dump_flags & ZEND_DUMP_HIDE_UNREACHABLE) & !(b->flags & ZEND_BB_REACHABLE)) { + if (!(dump_flags & ZEND_DUMP_HIDE_UNREACHABLE) && !(b->flags & ZEND_BB_REACHABLE)) { fprintf(stderr, " unreachable"); } if (b->flags & ZEND_BB_LOOP_HEADER) {