@@ -1635,7 +1635,7 @@ static zend_never_inline void zend_binary_assign_op_typed_prop(zend_property_inf
1635
1635
}
1636
1636
}
1637
1637
1638
- static zend_never_inline zend_long zend_check_string_offset (zval * dim , int type EXECUTE_DATA_DC )
1638
+ static zend_never_inline zend_long zend_check_string_offset (zval * dim , int type )
1639
1639
{
1640
1640
zend_long offset ;
1641
1641
@@ -1762,7 +1762,7 @@ static zend_never_inline void zend_assign_to_string_offset(zval *str, zval *dim,
1762
1762
/* The string may be destroyed while throwing the notice.
1763
1763
* Temporarily increase the refcount to detect this situation. */
1764
1764
GC_ADDREF (s );
1765
- offset = zend_check_string_offset (dim , BP_VAR_W EXECUTE_DATA_CC );
1765
+ offset = zend_check_string_offset (dim , BP_VAR_W );
1766
1766
if (UNEXPECTED (GC_DELREF (s ) == 0 )) {
1767
1767
zend_string_efree (s );
1768
1768
if (UNEXPECTED (RETURN_VALUE_USED (opline ))) {
@@ -2322,7 +2322,7 @@ static ZEND_COLD void zend_binary_assign_op_dim_slow(zval *container, zval *dim
2322
2322
if (opline -> op2_type == IS_UNUSED ) {
2323
2323
zend_use_new_element_for_string ();
2324
2324
} else {
2325
- zend_check_string_offset (dim , BP_VAR_RW EXECUTE_DATA_CC );
2325
+ zend_check_string_offset (dim , BP_VAR_RW );
2326
2326
zend_wrong_string_offset_error ();
2327
2327
}
2328
2328
} else {
@@ -2624,7 +2624,7 @@ static zend_always_inline void zend_fetch_dimension_address(zval *result, zval *
2624
2624
if (dim == NULL ) {
2625
2625
zend_use_new_element_for_string ();
2626
2626
} else {
2627
- zend_check_string_offset (dim , type EXECUTE_DATA_CC );
2627
+ zend_check_string_offset (dim , type );
2628
2628
zend_wrong_string_offset_error ();
2629
2629
}
2630
2630
ZVAL_UNDEF (result );
0 commit comments