]> granicus.if.org Git - php/commitdiff
MFH: Patch by David Soria Parra <dsp@php.net>.
authorSebastian Bergmann <sebastian@php.net>
Sun, 25 Jan 2009 11:07:40 +0000 (11:07 +0000)
committerSebastian Bergmann <sebastian@php.net>
Sun, 25 Jan 2009 11:07:40 +0000 (11:07 +0000)
Zend/zend_alloc.c

index e5978a46817d5c84f3dab95a350239e18e171b29..71c401de8eeb246202ab825bcf4857c912439136 100644 (file)
@@ -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];