mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Fixed typo
This commit is contained in:
parent
7c86ea88fb
commit
851a219226
1 changed files with 1 additions and 1 deletions
|
@ -1644,7 +1644,7 @@ static zend_always_inline void zend_fetch_property_address(zval *result, zval *c
|
|||
{
|
||||
if (container_op_type != IS_UNUSED && UNEXPECTED(Z_TYPE_P(container) != IS_OBJECT)) {
|
||||
do {
|
||||
if (container_op_type != IS_VAR && UNEXPECTED(container == &EG(error_zval))) {
|
||||
if (container_op_type == IS_VAR && UNEXPECTED(container == &EG(error_zval))) {
|
||||
ZVAL_INDIRECT(result, &EG(error_zval));
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue