diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map.c | 4 | ||||
-rw-r--r-- | src/term.c | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -13,7 +13,7 @@ static struct hashmap *all_terms; static void hashmap_free_term(void *item) { struct term *term = *(struct term **)item; - free(term); + term_destroy_head(term); } struct hashmap *map_all_terms(void) @@ -31,7 +31,7 @@ struct term *map_get(struct hashmap *map, hash_t hash) void map_set(struct hashmap *map, struct term *term) { - if (!hashmap_get(map, term->hash)) + if (map == all_terms && !hashmap_get(map, term->hash)) schedule_add(term); // also add to schedule hashmap_set(map, &term, term->hash); } @@ -198,6 +198,7 @@ void term_rehash_parents(struct term *term) struct parent_list *next = iterator->next; free(iterator); iterator = next; + continue; } map_delete(term->parents, parent); |