summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2009-01-25 11:07:40 +0000
committerSebastian Bergmann <sebastian@php.net>2009-01-25 11:07:40 +0000
commite115709774e7f7c2a721429cbe7ec78a0174c9bc (patch)
tree1a7c5c5b9ba25a54c32936aed1fb6577c522020e /Zend/zend_alloc.c
parent450c5afedf375b9269513018c76ce56e39521e43 (diff)
downloadphp-git-e115709774e7f7c2a721429cbe7ec78a0174c9bc.tar.gz
MFH: Patch by David Soria Parra <dsp@php.net>.
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r--Zend/zend_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index e5978a4681..71c401de8e 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -1806,7 +1806,7 @@ static void *_zend_mm_alloc_int(zend_mm_heap *heap, size_t size ZEND_FILE_LINE_D
heap->cache_stat[ZEND_MM_NUM_BUCKETS].miss++;
#endif
- best_fit = zend_mm_search_large_block(heap, true_size);
+ best_fit = zend_mm_search_large_block(heap, true_size);
if (!best_fit && heap->real_size >= heap->limit - heap->block_size) {
zend_mm_free_block *p = heap->rest_buckets[0];