]> granicus.if.org Git - php/commitdiff
reverted changes for #62477
authorAnatoliy Belsky <ab@php.net>
Thu, 12 Jul 2012 08:54:14 +0000 (10:54 +0200)
committerAnatoliy Belsky <ab@php.net>
Thu, 12 Jul 2012 08:54:14 +0000 (10:54 +0200)
NEWS
ext/spl/spl_iterators.c
ext/spl/spl_iterators.h
ext/spl/tests/bug62477_1.phpt [deleted file]
ext/spl/tests/bug62477_2.phpt [deleted file]

diff --git a/NEWS b/NEWS
index 2f60c430612f0530edda843b7fecdfde09652fc0..902185cffe97b83f51a669a82ef91545eed3f580 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -204,7 +204,6 @@ PHP                                                                        NEWS
     having had its dtor callback called in between). (Gustavo)
   . Fixed bug #61347 (inconsistent isset behavior of Arrayobject). (Laruence)
   . Fixed bug #61326 (ArrayObject comparison). (Gustavo)
-  . Fixed bug #62477 LimitIterator int overflow. (Anatoliy)
 
 - SQLite3 extension:
   . Add createCollation() method. (Brad Dewar)
index 1cbb2e48a94ace360592d8d13e12f8cbbe22d430..eecd483ba77d099d6371c3ef41027aa985d05818 100755 (executable)
@@ -1380,31 +1380,12 @@ static spl_dual_it_object* spl_dual_it_construct(INTERNAL_FUNCTION_PARAMETERS, z
        intern->dit_type = dit_type;
        switch (dit_type) {
                case DIT_LimitIterator: {
-                       zval *tmp_offset, *tmp_count;
                        intern->u.limit.offset = 0; /* start at beginning */
                        intern->u.limit.count = -1; /* get all */
-                       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|zz", &zobject, ce_inner, &tmp_offset, &tmp_count) == FAILURE) {
+                       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count) == FAILURE) {
                                zend_restore_error_handling(&error_handling TSRMLS_CC);
                                return NULL;
                        }
-                       if (tmp_offset && Z_TYPE_P(tmp_offset) != IS_NULL) {
-                               if (Z_TYPE_P(tmp_offset) != IS_LONG) {
-                                       zend_throw_exception(spl_ce_OutOfRangeException, "offset param must be of type int", 0 TSRMLS_CC);
-                                       zend_restore_error_handling(&error_handling TSRMLS_CC);
-                                       return NULL;
-                               } else {
-                                       intern->u.limit.offset = Z_LVAL_P(tmp_offset);
-                               }
-                       }
-                       if (tmp_count && Z_TYPE_P(tmp_count) != IS_NULL) {
-                               if (Z_TYPE_P(tmp_count) != IS_LONG) {
-                                       zend_throw_exception(spl_ce_OutOfRangeException, "count param must be of type int", 0 TSRMLS_CC);
-                                       zend_restore_error_handling(&error_handling TSRMLS_CC);
-                                       return NULL;
-                               } else {
-                                       intern->u.limit.count = Z_LVAL_P(tmp_count);
-                               }
-                       }
                        if (intern->u.limit.offset < 0) {
                                zend_throw_exception(spl_ce_OutOfRangeException, "Parameter offset must be >= 0", 0 TSRMLS_CC);
                                zend_restore_error_handling(&error_handling TSRMLS_CC);
index 9494b26a0d8ec346c9cfe4136644607a4c58cce3..525a25cc9e22ec3abad0c911eb8ec2adc19c2842 100755 (executable)
@@ -128,7 +128,7 @@ typedef struct _spl_dual_it_object {
                uint                 str_key_len;
                ulong                int_key;
                int                  key_type; /* HASH_KEY_IS_STRING or HASH_KEY_IS_LONG */
-               long                  pos;
+               int                  pos;
        } current;
        dual_it_type             dit_type;
        union {
diff --git a/ext/spl/tests/bug62477_1.phpt b/ext/spl/tests/bug62477_1.phpt
deleted file mode 100644 (file)
index 1b768a7..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #62477 LimitIterator int overflow when float is passed (1)
---FILE--
-<?php
-
-$it = new LimitIterator(new ArrayIterator(array(42)), 10000000000000000000);
---EXPECTF--
-Fatal error: Uncaught exception 'OutOfRangeException' with message 'offset param must be of type int' in %sbug62477_1.php:%d
-Stack trace:
-#0 %sbug62477_1.php(%d): LimitIterator->__construct(Object(ArrayIterator), %f)
-#1 {main}
-  thrown in %sbug62477_1.php on line %d
diff --git a/ext/spl/tests/bug62477_2.phpt b/ext/spl/tests/bug62477_2.phpt
deleted file mode 100644 (file)
index aa3468a..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #62477 LimitIterator int overflow when float is passed (2)
---FILE--
-<?php
-
-$it = new LimitIterator(new ArrayIterator(array(42)), 0, 10000000000000000000);
---EXPECTF--
-Fatal error: Uncaught exception 'OutOfRangeException' with message 'count param must be of type int' in %sbug62477_2.php:%d
-Stack trace:
-#0 %sbug62477_2.php(%d): LimitIterator->__construct(Object(ArrayIterator), 0, %f)
-#1 {main}
-  thrown in %sbug62477_2.php on line %d