summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/conts/sptree.h10
-rw-r--r--tests/htrie.c22
2 files changed, 8 insertions, 24 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
diff --git a/tests/htrie.c b/tests/htrie.c
deleted file mode 100644
index 2c70b38..0000000
--- a/tests/htrie.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <assert.h>
-
-#define HTRIE_TYPE int
-#define HTRIE_KEY int
-#define HTRIE_HASH conts_inthash
-#define HTRIE_CMP(a, b) ((a) - (b))
-#define HTRIE_NAME ints
-#include <conts/htrie.h>
-
-int main()
-{
- struct ints ints = ints_create();
- for (int i = 0; i < 1000000; ++i) {
- ints_insert(&ints, i, i);
- }
-
- for (int i = 0; i < 1000000; ++i) {
- int *v = ints_at(&ints, i);
- assert(v && *v == i);
- }
- ints_destroy(&ints);
-}