cvs: ZendEngine2 / zend_alloc.c
[email protected] ("Sebastian Bergmann") Sun, 25 Jan 2009 11:07:21 -0000
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvssebastian1232881641@cvsserver> |
sebastian Sun Jan 25 11:07:21 2009 UTC
Modified files:
/ZendEngine2 zend_alloc.c
Log:
Patch by David Soria Parra <[email protected]>.
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_alloc.c?r1=1.219&r2=1.220&diff_format=u
Index: ZendEngine2/zend_alloc.c
diff -u ZendEngine2/zend_alloc.c:1.219 ZendEngine2/zend_alloc.c:1.220
--- ZendEngine2/zend_alloc.c:1.219 Wed Dec 31 11:12:28 2008
+++ ZendEngine2/zend_alloc.c Sun Jan 25 11:07:19 2009
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_alloc.c,v 1.219 2008/12/31 11:12:28 sebastian Exp $ */
+/* $Id: zend_alloc.c,v 1.220 2009/01/25 11:07:19 sebastian Exp $ */
#include "zend.h"
#include "zend_alloc.h"
@@ -1842,7 +1842,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];