tony2001 Fri Jul 6 12:17:58 2007 UTC
Modified files: (Branch: PHP_5_2)
/ZendEngine2 zend_API.c
Log:
MFH
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_API.c?r1=1.296.2.27.2.31&r2=1.296.2.27.2.32&diff_format=u
Index: ZendEngine2/zend_API.c
diff -u ZendEngine2/zend_API.c:1.296.2.27.2.31
ZendEngine2/zend_API.c:1.296.2.27.2.32
--- ZendEngine2/zend_API.c:1.296.2.27.2.31 Wed May 30 10:17:43 2007
+++ ZendEngine2/zend_API.c Fri Jul 6 12:17:58 2007
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_API.c,v 1.296.2.27.2.31 2007/05/30 10:17:43 tony2001 Exp $ */
+/* $Id: zend_API.c,v 1.296.2.27.2.32 2007/07/06 12:17:58 tony2001 Exp $ */
#include "zend.h"
#include "zend_execute.h"
@@ -1488,17 +1488,17 @@
if (dep->type == MODULE_DEP_REQUIRED ||
dep->type == MODULE_DEP_OPTIONAL) {
b2 = b1 + 1;
while (b2 < end) {
- r = (zend_module_entry*)(*b2)->pData;
- if (strcasecmp(dep->name, r->name) ==
0) {
- tmp = *b1;
- *b1 = *b2;
- *b2 = tmp;
- goto try_again;
- }
- b2++;
- }
- }
- dep++;
+ r =
(zend_module_entry*)(*b2)->pData;
+ if (strcasecmp(dep->name,
r->name) == 0) {
+ tmp = *b1;
+ *b1 = *b2;
+ *b2 = tmp;
+ goto try_again;
+ }
+ b2++;
+ }
+ }
+ dep++;
}
}
b1++;
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|