From: Sebastian Bergmann Date: Sun, 25 Jan 2009 11:07:40 +0000 (+0000) Subject: MFH: Patch by David Soria Parra . X-Git-Tag: php-5.3.0beta1~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e115709774e7f7c2a721429cbe7ec78a0174c9bc;p=php MFH: Patch by David Soria Parra . --- 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];