For Programmers: Free Programming Magazines  


Home > Archive > PHP Zend Engine > April 2004 > cvs: ZendEngine2 / zend_object_handlers.c









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author cvs: ZendEngine2 / zend_object_handlers.c
Andi Gutmans

2004-04-09, 11:37 am

andi Fri Apr 9 10:42:08 2004 EDT

Modified files:
/ZendEngine2 zend_object_handlers.c
Log:
- Fix bug #26441 (When __set() returned a value it corrupted it)


http://cvs.php.net/diff.php/ZendEng...96&r2=1.97&ty=u
Index: ZendEngine2/zend_object_handlers.c
diff -u ZendEngine2/zend_object_handlers.c:1.96 ZendEngine2/zend_object_handlers.c:1.97
--- ZendEngine2/zend_object_handlers.c:1.96 Sun Mar 21 13:07:27 2004
+++ ZendEngine2/zend_object_handlers.c Fri Apr 9 10:42:06 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/

-/* $Id: zend_object_handlers.c,v 1.96 2004/03/21 18:07:27 stas Exp $ */
+/* $Id: zend_object_handlers.c,v 1.97 2004/04/09 14:42:06 andi Exp $ */

#include "zend.h"
#include "zend_globals.h"
@@ -141,7 +141,7 @@

zval_ptr_dtor(&value);

- if (retval && zval_is_true(retval)) {
+ if (retval && zend_is_true(retval)) {
ret = SUCCESS;
} else {
ret = FAILURE;
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com