summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-10-18 15:56:16 +0000
committerWez Furlong <wez@php.net>2003-10-18 15:56:16 +0000
commit0577d9310b1e44811cefa6c338b4212e87a3fd60 (patch)
treeb39d3b2a1f469343fbdcc0d658f3ccb016c2206a
parentac262baf19d122715e686521b76ddabb973d02b5 (diff)
downloadphp-git-0577d9310b1e44811cefa6c338b4212e87a3fd60.tar.gz
bah. does it really make any difference where rewind lives in the struct!?
-rw-r--r--ext/com_dotnet/com_iterator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/com_dotnet/com_iterator.c b/ext/com_dotnet/com_iterator.c
index a260b3ca90..e4c31c6b30 100644
--- a/ext/com_dotnet/com_iterator.c
+++ b/ext/com_dotnet/com_iterator.c
@@ -113,11 +113,11 @@ static int com_iter_move_forwards(zend_object_iterator *iter TSRMLS_DC)
static zend_object_iterator_funcs com_iter_funcs = {
com_iter_dtor,
- NULL, /* rewind */
com_iter_has_more,
com_iter_get_data,
com_iter_get_key,
- com_iter_move_forwards
+ com_iter_move_forwards,
+ NULL
};
zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object TSRMLS_DC)