Skip to content

Commit fe5d079

Browse files
committed
Fix opline
Not sure why did this not fail localy
1 parent 3a53217 commit fe5d079

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Zend/zend_execute.c

+2
Original file line numberDiff line numberDiff line change
@@ -2988,6 +2988,8 @@ static zend_never_inline zval* ZEND_FASTCALL zend_fetch_dimension_address_inner_
29882988
static zend_never_inline void zend_fetch_object_dimension_address(zval *result, zend_object *obj, zval *offset, int offset_type, int type EXECUTE_DATA_DC)
29892989
{
29902990
zval *retval;
2991+
const zend_execute_data *execute_data = EG(current_execute_data);
2992+
const zend_op *opline = execute_data->opline;
29912993

29922994
GC_ADDREF(obj);
29932995
if (ZEND_CONST_COND(offset_type == IS_CV, offset != NULL) && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {

0 commit comments

Comments
 (0)