Skip to content

Commit 316aaca

Browse files
committed
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: Fixed wrong condition
2 parents 1bb295e + 77cbf8a commit 316aaca

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
@@ -493,7 +493,7 @@ void zend_optimizer_pass1(zend_op_array *op_array, zend_optimizer_ctx *ctx)
493493

494494
zend_string_release(lc_name);
495495
if (!m) {
496-
if (!PG(enable_dl)) {
496+
if (PG(enable_dl)) {
497497
break;
498498
} else {
499499
ZVAL_FALSE(&t);

0 commit comments

Comments
 (0)