From: Wez Furlong Date: Sat, 18 Oct 2003 15:56:16 +0000 (+0000) Subject: bah. does it really make any difference where rewind lives in the struct!? X-Git-Tag: RELEASE_1_3b3~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0577d9310b1e44811cefa6c338b4212e87a3fd60;p=php bah. does it really make any difference where rewind lives in the struct!? --- 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)