diff options
author | Marcus Boerger <helly@php.net> | 2003-10-18 18:43:31 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-10-18 18:43:31 +0000 |
commit | b0b82541e84e88a2e66b8a2239610c257ce6e475 (patch) | |
tree | a70911cdd0985292cba1dd33344aa932c7b3752c /Zend/zend_iterators.h | |
parent | 15bfbc7619e3560151e70619fde66fb1a0f0404e (diff) | |
download | php-git-b0b82541e84e88a2e66b8a2239610c257ce6e475.tar.gz |
Fix class/iterator relationship & handling
Diffstat (limited to 'Zend/zend_iterators.h')
-rwxr-xr-x | Zend/zend_iterators.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_iterators.h b/Zend/zend_iterators.h index bd62cc0c8d..4a05fdd942 100755 --- a/Zend/zend_iterators.h +++ b/Zend/zend_iterators.h @@ -56,7 +56,7 @@ struct _zend_object_iterator { typedef zval *(*zend_object_new_iterator_t)(zend_class_entry *ce, zval *object TSRMLS_DC); typedef struct _zend_class_iterator_funcs { - zend_object_iterator_funcs funcs; + zend_object_iterator_funcs *funcs; zend_object_new_iterator_t new_iterator; union _zend_function *zf_new_iterator; union _zend_function *zf_has_more; |