diff options
author | Zeev Suraski <zeev@php.net> | 2001-05-17 12:51:24 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-05-17 12:51:24 +0000 |
commit | c7464b7d6acdefa8d0ea0ecf90c202f0035af01a (patch) | |
tree | d0d810febfcd597d1bb8aab1f61047ff0599b4b7 /Zend/zend_alloc.c | |
parent | 41fbc95fe18e5391c7699cb7c84eb4b46c41d6fd (diff) | |
download | php-git-c7464b7d6acdefa8d0ea0ecf90c202f0035af01a.tar.gz |
Fix build
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 9fa094d217..25e55d5f6b 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -310,6 +310,7 @@ ZEND_API void *_erealloc(void *ptr, size_t size, int allow_failure ZEND_FILE_LIN CHECK_MEMORY_LIMIT(size - p->size, SIZE - REAL_SIZE(p->size)); if (AG(allocated_memory) > AG(allocated_memory_peak)) { AG(allocated_memory_peak) = AG(allocated_memory); + } #endif p->size = size; |