Skip to content

Commit a1ad38e

Browse files
committed
Fix decl after goto label error
1 parent ebda10b commit a1ad38e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Zend/zend_vm_def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10274,7 +10274,7 @@ ZEND_VM_HOT_TYPE_SPEC_HANDLER(ZEND_FETCH_DIM_R, (op->op1_type != IS_CONST && op-
1027410274
zval *value;
1027510275

1027610276
if (EXPECTED(Z_TYPE_P(container) == IS_ARRAY)) {
10277-
ZEND_VM_C_LABEL(fetch_dim_r_const_index_array):
10277+
ZEND_VM_C_LABEL(fetch_dim_r_const_index_array):;
1027810278
HashTable *ht = Z_ARRVAL_P(container);
1027910279
if (Z_TYPE_P(dim) == IS_LONG) {
1028010280
zend_long offset = Z_LVAL_P(dim);

Zend/zend_vm_execute.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)