helly Thu Jul 21 12:52:32 2005 EDT
Modified files:
/ZendEngine2 zend_execute_API.c
Log:
- Fix error generation logic (found by johannes)
http://cvs.php.net/diff.php/ZendEngine2/zend_execute_API.c?r1=1.327&r2=1.328&ty=u
Index: ZendEngine2/zend_execute_API.c
diff -u ZendEngine2/zend_execute_API.c:1.327
ZendEngine2/zend_execute_API.c:1.328
--- ZendEngine2/zend_execute_API.c:1.327 Tue Jul 12 02:52:59 2005
+++ ZendEngine2/zend_execute_API.c Thu Jul 21 12:52:32 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_execute_API.c,v 1.327 2005/07/12 06:52:59 dmitry Exp $ */
+/* $Id: zend_execute_API.c,v 1.328 2005/07/21 16:52:32 helly Exp $ */
#include <stdio.h>
#include <signal.h>
@@ -1366,7 +1366,7 @@
ai.afn[idx] ? ZEND_FN_SCOPE_NAME(ai.afn[idx]) : "", \
ai.afn[idx] ? "::" : "", \
ai.afn[idx] ? ai.afn[idx]->common.function_name : "", \
- ai.afn[idx] && ai.afn[idx+1] ? ", " : (ai.afn[idx] && ai.cnt >=
MAX_ABSTRACT_INFO_CNT ? ", ..." : "")
+ ai.afn[idx] && ai.afn[idx+1] ? ", " : (ai.afn[idx] && ai.cnt >
MAX_ABSTRACT_INFO_CNT ? ", ..." : "")
typedef struct _zend_abstract_info {
zend_function *afn[MAX_ABSTRACT_INFO_CNT+1];
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|