fix memory leak that occures when converting a hashmap to a string in debug mode

This commit is contained in:
William Bell
2025-11-11 19:57:24 +00:00
parent 0b594d7882
commit 0a2aa7369f
5 changed files with 17 additions and 16 deletions

View File

@@ -33,7 +33,7 @@ struct hashmap_GC *createHashmap_GC();
void clear_hashmap_GC(struct hashmap_GC *t);
void hashmap_GC_to_array(struct hashmap_GC *t, struct node_GC ***array,
struct node_GC ** hashmap_GC_to_array(struct hashmap_GC *t,
size_t *array_length);
int hashCode_GC(struct hashmap_GC *t, uint64_t hash);