Skip to content

Commit b233c19

Browse files
laruencesmalyshev
authored andcommitted
Fix typo while resolving conflicts
1 parent 0eb02b8 commit b233c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/reflection/php_reflection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2593,7 +2593,7 @@ ZEND_METHOD(reflection_parameter, getDefaultValue)
25932593
return;
25942594
}
25952595
precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
2596-
if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
2596+
if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2.op_type == IS_UNUSED) {
25972597
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Internal error");
25982598
return;
25992599
}

0 commit comments

Comments
 (0)