cvs: ZendEngine2(PHP_5_2) / zend_alloc.c

[email protected] ("Sebastian Bergmann") Sun, 25 Jan 2009 11:07:57 -0000
Newsgroups php.zend-engine.cvs
Message-ID <cvssebastian1232881677@cvsserver>
sebastian		Sun Jan 25 11:07:57 2009 UTC

  Modified files:              (Branch: PHP_5_2)
    /ZendEngine2	zend_alloc.c 
  Log:
  MFH: Patch by David Soria Parra <[email protected]>.
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_alloc.c?r1=1.144.2.3.2.51&r2=1.144.2.3.2.52&diff_format=u
Index: ZendEngine2/zend_alloc.c
diff -u ZendEngine2/zend_alloc.c:1.144.2.3.2.51 ZendEngine2/zend_alloc.c:1.144.2.3.2.52
--- ZendEngine2/zend_alloc.c:1.144.2.3.2.51	Wed Dec 31 11:17:33 2008
+++ ZendEngine2/zend_alloc.c	Sun Jan 25 11:07:56 2009
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_alloc.c,v 1.144.2.3.2.51 2008/12/31 11:17:33 sebastian Exp $ */
+/* $Id: zend_alloc.c,v 1.144.2.3.2.52 2009/01/25 11:07:56 sebastian Exp $ */
 
 #include "zend.h"
 #include "zend_alloc.h"
@@ -1804,7 +1804,7 @@
 	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];