Add missing NULL pointer for get_properties_for in iterator_object_handlers
initialization.
Also add two missing comments describing what the NULL pointer refer
to in iterator_object_handlers initialization.
0,
iter_wrapper_free,
iter_wrapper_dtor,
- NULL,
+ NULL, /* clone_obj */
NULL, /* prop read */
NULL, /* prop write */
NULL, /* read dim */
NULL, /* write dim */
- NULL,
+ NULL, /* get_property_ptr_ptr */
NULL, /* has prop */
NULL, /* unset prop */
NULL, /* has dim */
NULL, /* get_closure */
iter_wrapper_get_gc,
NULL, /* do_operation */
- NULL /* compare */
+ NULL, /* compare */
+ NULL /* get_properties_for */
};
ZEND_API void zend_register_iterator_wrapper(void)