1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 07:28:09 +02:00

Fixed script size calculation

This commit is contained in:
Dmitry Stogov
2014-04-01 13:04:33 +04:00
parent 569bfbd00b
commit 0da12b9273
+1 -1
View File
@@ -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: