Skip to content

Commit

Permalink
Add missing "return"
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Dec 3, 2021
1 parent 8d7d87c commit c9901aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ext/opcache/jit/zend_jit_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -1412,6 +1412,7 @@ static void ZEND_FASTCALL zend_jit_assign_dim_helper(zval *object_ptr, zval *dim
ZVAL_UNDEF(result);
}
}
return;
} else if (EXPECTED(Z_TYPE_P(object_ptr) == IS_STRING) && EXPECTED(dim != NULL)) {
zend_assign_to_string_offset(object_ptr, dim, value, result);
return;
Expand Down

0 comments on commit c9901aa

Please sign in to comment.