Skip to content

Commit 77cbf8a

Browse files
committed
Fixed wrong condition
1 parent dc7e536 commit 77cbf8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/Optimizer/pass1_5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ void zend_optimizer_pass1(zend_op_array *op_array, zend_optimizer_ctx *ctx)
485485

486486
zend_string_release(lc_name);
487487
if (!m) {
488-
if (!PG(enable_dl)) {
488+
if (PG(enable_dl)) {
489489
break;
490490
} else {
491491
ZVAL_FALSE(&t);

0 commit comments

Comments
 (0)