@@ -24382,6 +24382,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_VAR_CONST_HANDL
24382
24382
hval = 1;
24383
24383
goto num_index_dim;
24384
24384
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
24385
+ zend_use_resource_as_offset(offset);
24385
24386
hval = Z_RES_HANDLE_P(offset);
24386
24387
goto num_index_dim;
24387
24388
} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
@@ -26532,6 +26533,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_VAR_TMPVAR_HAND
26532
26533
hval = 1;
26533
26534
goto num_index_dim;
26534
26535
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
26536
+ zend_use_resource_as_offset(offset);
26535
26537
hval = Z_RES_HANDLE_P(offset);
26536
26538
goto num_index_dim;
26537
26539
} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
@@ -30543,6 +30545,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_VAR_CV_HANDLER(
30543
30545
hval = 1;
30544
30546
goto num_index_dim;
30545
30547
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
30548
+ zend_use_resource_as_offset(offset);
30546
30549
hval = Z_RES_HANDLE_P(offset);
30547
30550
goto num_index_dim;
30548
30551
} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
@@ -41807,6 +41810,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_CV_CONST_HANDLE
41807
41810
hval = 1;
41808
41811
goto num_index_dim;
41809
41812
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
41813
+ zend_use_resource_as_offset(offset);
41810
41814
hval = Z_RES_HANDLE_P(offset);
41811
41815
goto num_index_dim;
41812
41816
} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
@@ -45250,6 +45254,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_CV_TMPVAR_HANDL
45250
45254
hval = 1;
45251
45255
goto num_index_dim;
45252
45256
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
45257
+ zend_use_resource_as_offset(offset);
45253
45258
hval = Z_RES_HANDLE_P(offset);
45254
45259
goto num_index_dim;
45255
45260
} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
@@ -50372,6 +50377,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_UNSET_DIM_SPEC_CV_CV_HANDLER(Z
50372
50377
hval = 1;
50373
50378
goto num_index_dim;
50374
50379
} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
50380
+ zend_use_resource_as_offset(offset);
50375
50381
hval = Z_RES_HANDLE_P(offset);
50376
50382
goto num_index_dim;
50377
50383
} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
0 commit comments