Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed wrong condition
This commit is contained in:
Dmitry Stogov 2017-05-31 00:40:57 +03:00
commit 316aaca155

View File

@ -493,7 +493,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);