johannes Fri Nov 9 11:34:18 2007 UTC
Modified files:
/ZendEngine2 zend_ptr_stack.c
Log:
- That line got lost while merging around...
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_ptr_stack.c?r1=1.28&r2=1.29&diff_format=u
Index: ZendEngine2/zend_ptr_stack.c
diff -u ZendEngine2/zend_ptr_stack.c:1.28 ZendEngine2/zend_ptr_stack.c:1.29
--- ZendEngine2/zend_ptr_stack.c:1.28 Fri Nov 9 10:33:51 2007
+++ ZendEngine2/zend_ptr_stack.c Fri Nov 9 11:34:17 2007
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_ptr_stack.c,v 1.28 2007/11/09 10:33:51 johannes Exp $ */
+/* $Id: zend_ptr_stack.c,v 1.29 2007/11/09 11:34:17 johannes Exp $ */
#include "zend.h"
#include "zend_ptr_stack.h"
@@ -30,6 +30,7 @@
stack->top_element = stack->elements = (void **) pemalloc(sizeof(void
*)*PTR_STACK_BLOCK_SIZE, persistent);
stack->max = PTR_STACK_BLOCK_SIZE;
stack->top = 0;
+ stack->persistent = persistent;
}
/* }}} */
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|