Skip to content

Commit bb94b56

Browse files
committed
fix null pointer in zend_fetch_property_address
1 parent 842a996 commit bb94b56

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ Stack trace:
2727
#1 %s(%d): A->__get('p')
2828
#2 {main}
2929
thrown in %s on line %d
30-
31-

Zend/zend_execute.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3637,7 +3637,7 @@ static zend_always_inline void zend_fetch_property_address(zval *result, zval *c
36373637
ZVAL_ERROR(result);
36383638
goto end;
36393639
}
3640-
3640+
36413641
ZVAL_INDIRECT(result, ptr);
36423642
flags &= ZEND_FETCH_OBJ_FLAGS;
36433643
if (flags) {

0 commit comments

Comments
 (0)