diff options
Diffstat (limited to 'Zend/zend_alloc.c')
| -rw-r--r-- | Zend/zend_alloc.c | 2 |
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]; |
