mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Fixed script size calculation
This commit is contained in:
parent
569bfbd00b
commit
0da12b9273
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static uint zend_persist_zval_calc(zval *z TSRMLS_DC)
|
|||
size = zend_shared_memdup_size(Z_REF_P(z), sizeof(zend_reference));
|
||||
if (size) {
|
||||
ADD_SIZE(size);
|
||||
zend_persist_zval_calc(Z_REFVAL_P(z) TSRMLS_CC);
|
||||
ADD_SIZE(zend_persist_zval_calc(Z_REFVAL_P(z) TSRMLS_CC));
|
||||
}
|
||||
break;
|
||||
case IS_CONSTANT_AST:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue