diff options
author | Dmitry Stogov <dmitry@zend.com> | 2019-03-20 01:31:35 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2019-03-20 01:31:35 +0300 |
commit | 14359eb7eb5aa32f023a30579b8fa2fbaa8f0f2e (patch) | |
tree | ac231ce2428822c42a709e0b2b62c92a4fbf454a /Zend/zend_vm_execute.h | |
parent | 864366ef203b5faebf2cb183395d5165cf051a4f (diff) | |
download | php-git-14359eb7eb5aa32f023a30579b8fa2fbaa8f0f2e.tar.gz |
Fixed typo
Diffstat (limited to 'Zend/zend_vm_execute.h')
-rw-r--r-- | Zend/zend_vm_execute.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/zend_vm_execute.h b/Zend/zend_vm_execute.h index eebf5e9ba4..f160de75d1 100644 --- a/Zend/zend_vm_execute.h +++ b/Zend/zend_vm_execute.h @@ -8015,7 +8015,7 @@ num_index_prop: if (IS_CONST & (IS_CONST|IS_CV)) { /* avoid exception check */ - + zval_ptr_dtor_nogc(free_op2); ZEND_VM_SMART_BRANCH(result, 0); ZVAL_BOOL(EX_VAR(opline->result.var), result); ZEND_VM_NEXT_OPCODE(); @@ -14391,7 +14391,7 @@ num_index_prop: if ((IS_TMP_VAR|IS_VAR) & (IS_CONST|IS_CV)) { /* avoid exception check */ - zval_ptr_dtor_nogc(free_op1); + ZEND_VM_SMART_BRANCH(result, 0); ZVAL_BOOL(EX_VAR(opline->result.var), result); ZEND_VM_NEXT_OPCODE(); @@ -15898,7 +15898,7 @@ num_index_prop: if ((IS_TMP_VAR|IS_VAR) & (IS_CONST|IS_CV)) { /* avoid exception check */ - zval_ptr_dtor_nogc(free_op1); + zval_ptr_dtor_nogc(free_op2); ZEND_VM_SMART_BRANCH(result, 0); ZVAL_BOOL(EX_VAR(opline->result.var), result); ZEND_VM_NEXT_OPCODE(); @@ -17519,7 +17519,7 @@ num_index_prop: if ((IS_TMP_VAR|IS_VAR) & (IS_CONST|IS_CV)) { /* avoid exception check */ - zval_ptr_dtor_nogc(free_op1); + ZEND_VM_SMART_BRANCH(result, 0); ZVAL_BOOL(EX_VAR(opline->result.var), result); ZEND_VM_NEXT_OPCODE(); @@ -47910,7 +47910,7 @@ num_index_prop: if (IS_CV & (IS_CONST|IS_CV)) { /* avoid exception check */ - + zval_ptr_dtor_nogc(free_op2); ZEND_VM_SMART_BRANCH(result, 0); ZVAL_BOOL(EX_VAR(opline->result.var), result); ZEND_VM_NEXT_OPCODE(); |