helly Mon May 31 17:43:43 2004 EDT
Modified files:
/ZendEngine2 zend_reflection_api.c
Log:
Add missing initialization
http://cvs.php.net/diff.php/ZendEngine2/zend_reflection_api.c?r1=1.103&r2=1.104&ty=u
Index: ZendEngine2/zend_reflection_api.c
diff -u ZendEngine2/zend_reflection_api.c:1.103
ZendEngine2/zend_reflection_api.c:1.104
--- ZendEngine2/zend_reflection_api.c:1.103 Tue Apr 27 11:18:33 2004
+++ ZendEngine2/zend_reflection_api.c Mon May 31 17:43:43 2004
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_reflection_api.c,v 1.103 2004/04/27 15:18:33 andi Exp $ */
+/* $Id: zend_reflection_api.c,v 1.104 2004/05/31 21:43:43 helly Exp $ */
#include "zend.h"
#include "zend_API.h"
#include "zend_exceptions.h"
@@ -942,6 +942,7 @@
}
/* Create object */
+ INIT_PZVAL(&reflector);
if (object_and_properties_init(&reflector, ce_ptr, NULL) == FAILURE) {
_DO_THROW("Could not create reflector");
}
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|