1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 17:43:13 +02:00

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);
}
}
return;
} else if (EXPECTED(Z_TYPE_P(object_ptr) == IS_STRING) && EXPECTED(dim != NULL)) {
zend_assign_to_string_offset(object_ptr, dim, value, result);
return;