logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

cvs: ZendEngine2(PHP_5_2) / zend_alloc.c: msg#00038

Subject: cvs: ZendEngine2(PHP_5_2) / zend_alloc.c
andi            Fri Dec 15 17:03:42 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /ZendEngine2        zend_alloc.c 
  Log:
  - I prefer cookie to be the first element.
  
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_alloc.c?r1=1.144.2.3.2.23&r2=1.144.2.3.2.24&diff_format=u
Index: ZendEngine2/zend_alloc.c
diff -u ZendEngine2/zend_alloc.c:1.144.2.3.2.23 
ZendEngine2/zend_alloc.c:1.144.2.3.2.24
--- ZendEngine2/zend_alloc.c:1.144.2.3.2.23     Fri Dec 15 13:25:26 2006
+++ ZendEngine2/zend_alloc.c    Fri Dec 15 17:03:42 2006
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_alloc.c,v 1.144.2.3.2.23 2006/12/15 13:25:26 dmitry Exp $ */
+/* $Id: zend_alloc.c,v 1.144.2.3.2.24 2006/12/15 17:03:42 andi Exp $ */
 
 #include "zend.h"
 #include "zend_alloc.h"
@@ -300,11 +300,11 @@
 
 /* mm block type */
 typedef struct _zend_mm_block_info {
-       size_t _size;
-       size_t _prev;
 #if ZEND_MM_COOKIES
        unsigned long _cookie;
 #endif
+       size_t _size;
+       size_t _prev;
 } zend_mm_block_info;
 
 #if ZEND_DEBUG

-- 
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




<Prev in Thread] Current Thread [Next in Thread>