]> granicus.if.org Git - php/commitdiff
Fixed bug #61482, caused by the fix to bug #61418.
authorGustavo André dos Santos Lopes <cataphract@php.net>
Fri, 23 Mar 2012 09:42:05 +0000 (09:42 +0000)
committerGustavo André dos Santos Lopes <cataphract@php.net>
Fri, 23 Mar 2012 11:19:19 +0000 (11:19 +0000)
Turns out I'd forgotten to also update the destructor for the iterator
returned by DirectoryIterator.
The iterator for DirectoryIterator maintains the same ->current pointer
throughout its existence (the DirectoryIterator itself) and returns it
(the same object) everytime a value is requested from the iterator.
Moving forward the iterator only changes the object. Previous code
added two references to the object in get_iterator on the account of
1) the iterator memory living in its DirectoryIterator object and
2) the object being stored in iterator->current. This seems to be
unnecessary. Iterators are not responsible for incrementing the refcount
of the values they yield, that's up to the caller (the engine). What
matters for the iterator is that the object exists as long as the
iterator exists and this can be guaranteed by incremented the refcount
only once. Consequently, I only add one reference in get_iterator
(and reclaim it in the iterator destructor).

ext/spl/spl_directory.c

index fb198236e5ef341b981c2fbefd538546d6aeb2d8..04da4e6afe30921d10f543c96143d5d8b9ebd35a 100755 (executable)
@@ -1655,13 +1655,16 @@ zend_object_iterator *spl_filesystem_dir_get_iterator(zend_class_entry *ce, zval
 static void spl_filesystem_dir_it_dtor(zend_object_iterator *iter TSRMLS_DC)
 {
        spl_filesystem_iterator *iterator = (spl_filesystem_iterator *)iter;
-       zval *zfree = (zval*)iterator->intern.data;
 
-       iterator->intern.data = NULL; /* mark as unused */
-       zval_ptr_dtor(&iterator->current);
-       if (zfree) {
-               zval_ptr_dtor(&zfree);
+       if (iterator->intern.data) {
+               zval *object =  iterator->intern.data;
+               zval_ptr_dtor(&object);
        }
+       /* Otherwise we were called from the owning object free storage handler as
+        * it sets
+        * iterator->intern.data to NULL.
+        * We don't even need to destroy iterator->current as we didn't add a
+        * reference to it in move_forward or get_iterator */
 }
 /* }}} */