summaryrefslogtreecommitdiff
path: root/ext/ffi
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-07-01 11:49:44 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-07-01 15:17:22 +0200
commit312201dce4daca2770fd507af4a9a541bfe83fc0 (patch)
treeda522ea9d98ab2b457d88a8fa11d7f5f18168481 /ext/ffi
parent8d9637bdacd698b72da3e0b9578ebfafefa82f3c (diff)
downloadphp-git-312201dce4daca2770fd507af4a9a541bfe83fc0.tar.gz
Add get_gc handle for object iterators
Optional handler with the same semantics as the object handler.
Diffstat (limited to 'ext/ffi')
-rw-r--r--ext/ffi/ffi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/ffi/ffi.c b/ext/ffi/ffi.c
index 946f6c9845..c06597283b 100644
--- a/ext/ffi/ffi.c
+++ b/ext/ffi/ffi.c
@@ -1874,7 +1874,8 @@ static const zend_object_iterator_funcs zend_ffi_cdata_it_funcs = {
zend_ffi_cdata_it_get_current_key,
zend_ffi_cdata_it_move_forward,
zend_ffi_cdata_it_rewind,
- NULL
+ NULL,
+ NULL, /* get_gc */
};
static zend_object_iterator *zend_ffi_cdata_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{ */