Add missing "return"

This commit is contained in:
Dmitry Stogov 2021-12-03 13:52:10 +03:00
parent 8d7d87cdc4
commit c9901aa594

View file

@ -1412,6 +1412,7 @@ static void ZEND_FASTCALL zend_jit_assign_dim_helper(zval *object_ptr, zval *dim
ZVAL_UNDEF(result); ZVAL_UNDEF(result);
} }
} }
return;
} else if (EXPECTED(Z_TYPE_P(object_ptr) == IS_STRING) && EXPECTED(dim != NULL)) { } else if (EXPECTED(Z_TYPE_P(object_ptr) == IS_STRING) && EXPECTED(dim != NULL)) {
zend_assign_to_string_offset(object_ptr, dim, value, result); zend_assign_to_string_offset(object_ptr, dim, value, result);
return; return;