diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-02 20:51:14 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-02 20:51:14 +0200 |
commit | 2d63e807ac56cad97bf32bec0e8372dc2bed240d (patch) | |
tree | 0fd7febe8b251f738868a17151379632a890d9ab | |
parent | 899648e6a7d16880c8f9a92df64054656129e638 (diff) | |
download | conts-2d63e807ac56cad97bf32bec0e8372dc2bed240d.tar.gz conts-2d63e807ac56cad97bf32bec0e8372dc2bed240d.zip |
separate freeing and removing nodes
-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 27dc2f7..bbb2281 100644 --- a/include/conts/sptree.h +++ b/include/conts/sptree.h @@ -393,6 +393,13 @@ static inline void SPTREE(remove_found)(struct SPROOT *s, SPTREE_TYPE *found) SPTREE(update)(s, paren); } +static inline void SPTREE(free_found)(struct SPROOT *s, SPTREE_TYPE *found) +{ + (void)s; /* unused */ + struct SPNODE *del = CONTAINER_OF(found, struct SPNODE, data); + free(del); +} + static inline void SPTREE(remove)(struct SPROOT *s, SPTREE_TYPE data) { SPTREE_TYPE *found = SPTREE(find)(s, data); @@ -400,8 +407,7 @@ 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); + SPTREE(free_found)(s, found); } static inline void SPTREE(destroy)(struct SPROOT *s) |