Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Girgias committed Jul 3, 2024
1 parent 9fcbf06 commit 96997ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Zend/zend_execute.c
Original file line number Diff line number Diff line change
Expand Up @@ -3206,6 +3206,10 @@ static zend_never_inline void zend_fetch_object_dimension_address_read(zval *res
if (EXPECTED(obj->ce->dimension_handlers)) {
if (EXPECTED(obj->ce->dimension_handlers->read_dimension)) {
ZEND_ASSERT(zend_check_dimension_interfaces_implemented(obj, /* has_offset */ true, BP_VAR_R));
if (is_bp_var_is && !obj->ce->dimension_handlers->has_dimension) {
printf("Class %s does not have has_handler set", ZSTR_VAL(obj->ce->name));
ZEND_ASSERT(false);
}

ZVAL_DEREF(offset);
if (UNEXPECTED(
Expand Down

0 comments on commit 96997ba

Please sign in to comment.