cvs: ZendEngine2(PHP_5_3) / zend_API.c
[email protected] ("Marcus Boerger")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvshelly1202592151@cvsserver> |
helly Sat Feb 9 21:22:31 2008 UTC
Modified files: (Branch: PHP_5_3)
/ZendEngine2 zend_API.c
Log:
- MFH Windows build fix
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_API.c?r1=1.296.2.27.2.34.2.28&r2=1.296.2.27.2.34.2.29&diff_format=u
Index: ZendEngine2/zend_API.c
diff -u ZendEngine2/zend_API.c:1.296.2.27.2.34.2.28 ZendEngine2/zend_API.c:1.296.2.27.2.34.2.29
--- ZendEngine2/zend_API.c:1.296.2.27.2.34.2.28 Thu Feb 7 18:42:01 2008
+++ ZendEngine2/zend_API.c Sat Feb 9 21:22:31 2008
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_API.c,v 1.296.2.27.2.34.2.28 2008/02/07 18:42:01 helly Exp $ */
+/* $Id: zend_API.c,v 1.296.2.27.2.34.2.29 2008/02/09 21:22:31 helly Exp $ */
#include "zend.h"
#include "zend_execute.h"
@@ -2312,6 +2312,7 @@
char *lmname, *colon;
int clen, mlen;
zend_function *fptr;
+ zend_class_entry *last_scope;
HashTable *ftable;
if (error) {
@@ -2359,7 +2360,7 @@
/* This is a compound name.
* Try to fetch class and then find static method. */
- zend_class_entry *last_scope = EG(scope);
+ last_scope = EG(scope);
if (ce_org) {
EG(scope) = ce_org;
}