diff options
author | Andi Gutmans <andi@php.net> | 2000-06-09 17:52:09 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-06-09 17:52:09 +0000 |
commit | ae191806418576a788f45439710055b49e8d3391 (patch) | |
tree | 92c2a11acb78fe5a9e13cb0cff736afba975ffbe /Zend/zend_alloc.c | |
parent | 717acfe9c51a71b6850f2c41dd0532d3e6fcc610 (diff) | |
download | php-git-ae191806418576a788f45439710055b49e8d3391.tar.gz |
- Forgot to remove the FIXME
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 47fbbe86f1..8e4871f8f5 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -266,7 +266,6 @@ ZEND_API void *_erealloc(void *ptr, size_t size, int allow_failure ZEND_FILE_LIN *((long *)(((char *) p) + sizeof(zend_mem_header)+SIZE+PLATFORM_PADDING+END_ALIGNMENT(SIZE))) = MEM_BLOCK_END_MAGIC; #endif #if MEMORY_LIMIT - /* FIXME: Not sure this is completely accurate with the new code. Need to check it. */ CHECK_MEMORY_LIMIT(size - p->size, SIZE - REAL_SIZE(p->size)); #endif p->size = size; |