summaryrefslogtreecommitdiffstats
path: root/libcnary
diff options
context:
space:
mode:
Diffstat (limited to 'libcnary')
-rw-r--r--libcnary/node.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcnary/node.c b/libcnary/node.c
index 6026925..3bd6975 100644
--- a/libcnary/node.c
+++ b/libcnary/node.c
@@ -142,6 +142,7 @@ void node_debug(node_t* node) {
142 for(current = iter->begin; current != NULL; current = iter->next(iter)) { 142 for(current = iter->begin; current != NULL; current = iter->next(iter)) {
143 node_debug(current); 143 node_debug(current);
144 } 144 }
145 node_iterator_destroy(iter);
145 } 146 }
146 147
147} 148}