summaryrefslogtreecommitdiff
path: root/main/astobj2.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/astobj2.c')
-rw-r--r--main/astobj2.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/astobj2.c b/main/astobj2.c
index 614e17096..ec80f6489 100644
--- a/main/astobj2.c
+++ b/main/astobj2.c
@@ -1682,6 +1682,11 @@ void *__ao2_iterator_next(struct ao2_iterator *iter)
return internal_ao2_iterator_next(iter, NULL, __FILE__, __LINE__, __PRETTY_FUNCTION__);
}
+int ao2_iterator_count(struct ao2_iterator *iter)
+{
+ return ao2_container_count(iter->c);
+}
+
static void container_destruct(void *_c)
{
struct ao2_container *c = _c;