summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-05-31 00:40:33 +0300
committerDmitry Stogov <dmitry@zend.com>2017-05-31 00:40:33 +0300
commit77cbf8a6578c8de42a236337ee1d3071a6178f5e (patch)
tree3057d2742dddf8d2012b39caa1dde9d03556ad26
parentdc7e53690faf7cc694f1278e43314414080d75f6 (diff)
downloadphp-git-77cbf8a6578c8de42a236337ee1d3071a6178f5e.tar.gz
Fixed wrong condition
-rw-r--r--ext/opcache/Optimizer/pass1_5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/pass1_5.c b/ext/opcache/Optimizer/pass1_5.c
index bf721c2a78..b29e90c767 100644
--- a/ext/opcache/Optimizer/pass1_5.c
+++ b/ext/opcache/Optimizer/pass1_5.c
@@ -485,7 +485,7 @@ void zend_optimizer_pass1(zend_op_array *op_array, zend_optimizer_ctx *ctx)
zend_string_release(lc_name);
if (!m) {
- if (!PG(enable_dl)) {
+ if (PG(enable_dl)) {
break;
} else {
ZVAL_FALSE(&t);