diff options
Diffstat (limited to 'src/strset.c')
-rw-r--r-- | src/strset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strset.c b/src/strset.c index c5c3031b9..0eb63bcbb 100644 --- a/src/strset.c +++ b/src/strset.c @@ -64,12 +64,12 @@ void strset_free(struct strset *set) while (slot != NULL) { next = slot->next; - free(slot); + g_free(slot); slot = next; } } - free(set); + g_free(set); } void strset_add(struct strset *set, const char *value) |