Skip to content

Commit baa883d

Browse files
committed
Fixed build without global register variables
1 parent cbbd473 commit baa883d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_execute.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2004,7 +2004,7 @@ static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_use_new_element_for_s
20042004
zend_throw_error(NULL, "[] operator not supported for strings");
20052005
}
20062006

2007-
static zend_never_inline zend_uchar slow_index_convert(const zval *dim, zend_value *value)
2007+
static zend_never_inline zend_uchar slow_index_convert(const zval *dim, zend_value *value EXECUTE_DATA_DC)
20082008
{
20092009
switch (Z_TYPE_P(dim)) {
20102010
case IS_UNDEF:
@@ -2115,7 +2115,7 @@ static zend_always_inline zval *zend_fetch_dimension_address_inner(HashTable *ht
21152115
goto try_again;
21162116
} else {
21172117
zend_value val;
2118-
zend_uchar t = slow_index_convert(dim, &val);
2118+
zend_uchar t = slow_index_convert(dim, &val EXECUTE_DATA_CC);
21192119

21202120
if (t == IS_STRING) {
21212121
offset_key = val.str;

0 commit comments

Comments
 (0)