aboutsummaryrefslogtreecommitdiff
path: root/src/strset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strset.c')
-rw-r--r--src/strset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strset.c b/src/strset.c
index c5c3031b..0eb63bcb 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)