Here's the fix for 28404, someone with ZE karma care to apply?

-Sara

Index: Zend/zend_execute.c
===================================================================
RCS file: /repository/ZendEngine2/zend_execute.c,v
retrieving revision 1.644
diff -u -r1.644 zend_execute.c
--- Zend/zend_execute.c 29 Apr 2004 09:47:29 -0000      1.644
+++ Zend/zend_execute.c 17 May 2004 21:55:22 -0000
@@ -3972,7 +3972,7 @@
                                case IS_BOOL:
                                case IS_LONG:
                                        if (offset->type == IS_DOUBLE) {
-                                               index = (long)
offset->value.lval;
+                                               index = (long)
offset->value.dval;
                                        } else {
                                                index = offset->value.lval;

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to