diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-05 23:27:48 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-05 23:27:48 +0200 |
commit | b5048ca2997d373c7e9b8938d29c542b891ce970 (patch) | |
tree | 522d741636ebf206b06d0e38c09042eb6d96bcaf /include | |
parent | 1f57645d9550e486a5bc209a0652bfad7fb8872a (diff) | |
download | conts-b5048ca2997d373c7e9b8938d29c542b891ce970.tar.gz conts-b5048ca2997d373c7e9b8938d29c542b891ce970.zip |
remember to free nodes in sptree
Diffstat (limited to 'include')
-rw-r--r-- | include/conts/sptree.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/conts/sptree.h b/include/conts/sptree.h index 75b88fc..e305c0f 100644 --- a/include/conts/sptree.h +++ b/include/conts/sptree.h @@ -400,12 +400,18 @@ static inline void SPTREE(remove)(struct SPROOT *s, SPTREE_TYPE data) return; SPTREE(remove_found)(s, found); + struct SPNODE *del = CONTAINER_OF(found, struct SPNODE, data); + free(del); } static inline void SPTREE(destroy)(struct SPROOT *s) { - while (s->root) - SPTREE(remove_found)(s, &s->root->data); + while (s->root) { + SPTREE_TYPE *top = &s->root->data; + SPTREE(remove_found)(s, top); + struct SPNODE *del = CONTAINER_OF(top, struct SPNODE, data); + free(del); + } } #undef SPTREE |