File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2004,7 +2004,7 @@ static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_use_new_element_for_s
2004
2004
zend_throw_error (NULL , "[] operator not supported for strings" );
2005
2005
}
2006
2006
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 )
2008
2008
{
2009
2009
switch (Z_TYPE_P (dim )) {
2010
2010
case IS_UNDEF :
@@ -2115,7 +2115,7 @@ static zend_always_inline zval *zend_fetch_dimension_address_inner(HashTable *ht
2115
2115
goto try_again ;
2116
2116
} else {
2117
2117
zend_value val ;
2118
- zend_uchar t = slow_index_convert (dim , & val );
2118
+ zend_uchar t = slow_index_convert (dim , & val EXECUTE_DATA_CC );
2119
2119
2120
2120
if (t == IS_STRING ) {
2121
2121
offset_key = val .str ;
You can’t perform that action at this time.
0 commit comments