@@ -1168,7 +1168,7 @@ static zend_always_inline zval *zend_fetch_dimension_address_inner(HashTable *ht
1168
1168
return retval ;
1169
1169
}
1170
1170
1171
- static zend_never_inline zend_long zend_check_string_offset (zval * container , zval * dim , int type TSRMLS_DC )
1171
+ static zend_never_inline zend_long zend_check_string_offset (zval * dim , int type TSRMLS_DC )
1172
1172
{
1173
1173
zend_long offset ;
1174
1174
@@ -1211,7 +1211,7 @@ static zend_never_inline zend_long zend_check_string_offset(zval *container, zva
1211
1211
1212
1212
static zend_always_inline zend_long zend_fetch_string_offset (zval * container , zval * dim , int type TSRMLS_DC )
1213
1213
{
1214
- zend_long offset = zend_check_string_offset (container , dim , type TSRMLS_CC );
1214
+ zend_long offset = zend_check_string_offset (dim , type TSRMLS_CC );
1215
1215
1216
1216
if (Z_REFCOUNTED_P (container )) {
1217
1217
if (Z_REFCOUNT_P (container ) > 1 ) {
@@ -1250,7 +1250,7 @@ static zend_always_inline void zend_fetch_dimension_address(zval *result, zval *
1250
1250
goto fetch_from_array ;
1251
1251
}
1252
1252
1253
- zend_check_string_offset (container , dim , type TSRMLS_CC );
1253
+ zend_check_string_offset (dim , type TSRMLS_CC );
1254
1254
1255
1255
ZVAL_INDIRECT (result , NULL ); /* wrong string offset */
1256
1256
} else if (EXPECTED (Z_TYPE_P (container ) == IS_OBJECT )) {
@@ -1666,7 +1666,7 @@ static zend_always_inline void i_init_func_execute_data(zend_execute_data *execu
1666
1666
} while (var != end );
1667
1667
}
1668
1668
1669
- if (op_array -> this_var != -1 && EXPECTED (Z_OBJ (EX (This )))) {
1669
+ if (op_array -> this_var != ( uint32_t ) -1 && EXPECTED (Z_OBJ (EX (This )))) {
1670
1670
ZVAL_OBJ (EX_VAR (op_array -> this_var ), Z_OBJ (EX (This )));
1671
1671
GC_REFCOUNT (Z_OBJ (EX (This )))++ ;
1672
1672
}
@@ -1691,7 +1691,7 @@ static zend_always_inline void i_init_code_execute_data(zend_execute_data *execu
1691
1691
1692
1692
zend_attach_symbol_table (execute_data );
1693
1693
1694
- if (op_array -> this_var != -1 && EXPECTED (Z_OBJ (EX (This )))) {
1694
+ if (op_array -> this_var != ( uint32_t ) -1 && EXPECTED (Z_OBJ (EX (This )))) {
1695
1695
ZVAL_OBJ (EX_VAR (op_array -> this_var ), Z_OBJ (EX (This )));
1696
1696
GC_REFCOUNT (Z_OBJ (EX (This )))++ ;
1697
1697
}
@@ -1762,7 +1762,7 @@ static zend_always_inline void i_init_execute_data(zend_execute_data *execute_da
1762
1762
}
1763
1763
}
1764
1764
1765
- if (op_array -> this_var != -1 && EXPECTED (Z_OBJ (EX (This )))) {
1765
+ if (op_array -> this_var != ( uint32_t ) -1 && EXPECTED (Z_OBJ (EX (This )))) {
1766
1766
ZVAL_OBJ (EX_VAR (op_array -> this_var ), Z_OBJ (EX (This )));
1767
1767
GC_REFCOUNT (Z_OBJ (EX (This )))++ ;
1768
1768
}
0 commit comments