mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Manual CSE
This commit is contained in:
parent
0b7a968109
commit
106575ed39
1 changed files with 2 additions and 2 deletions
|
@ -250,8 +250,8 @@ static zend_always_inline void zend_vm_stack_free_args(zend_execute_data *call)
|
|||
do {
|
||||
p--;
|
||||
if (Z_REFCOUNTED_P(p)) {
|
||||
if (!Z_DELREF_P(p)) {
|
||||
zend_refcounted *r = Z_COUNTED_P(p);
|
||||
zend_refcounted *r = Z_COUNTED_P(p);
|
||||
if (!GC_DELREF(r)) {
|
||||
ZVAL_NULL(p);
|
||||
zval_dtor_func(r);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue