From 53ec43c61d2f0e19c41640c63ec034b2f8cedb89 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 15 Jun 2010 02:45:26 +0200 Subject: [PATCH] set: introduce set_free_free() --- src/load-fragment.c | 6 +----- src/set.c | 9 +++++++++ src/set.h | 1 + src/unit.c | 9 ++------- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/load-fragment.c b/src/load-fragment.c index 5f5e37397..b679fab47 100644 --- a/src/load-fragment.c +++ b/src/load-fragment.c @@ -1483,7 +1483,6 @@ static int load_from_path(Unit *u, const char *path) { #undef EXEC_CONTEXT_CONFIG_ITEMS const char *sections[3]; - char *k; int r; Set *symlink_names; FILE *f = NULL; @@ -1581,10 +1580,7 @@ static int load_from_path(Unit *u, const char *path) { r = 0; finish: - while ((k = set_steal_first(symlink_names))) - free(k); - - set_free(symlink_names); + set_free_free(symlink_names); free(filename); if (f) diff --git a/src/set.c b/src/set.c index efd20db53..a1aeb727a 100644 --- a/src/set.c +++ b/src/set.c @@ -37,6 +37,15 @@ void set_free(Set* s) { hashmap_free(MAKE_HASHMAP(s)); } +void set_free_free(Set *s) { + void *p; + + while ((p = set_steal_first(s))) + free(p); + + set_free(s); +} + int set_ensure_allocated(Set **s, hash_func_t hash_func, compare_func_t compare_func) { return hashmap_ensure_allocated((Hashmap**) s, hash_func, compare_func); } diff --git a/src/set.h b/src/set.h index dd2e91dd1..c643a2789 100644 --- a/src/set.h +++ b/src/set.h @@ -34,6 +34,7 @@ typedef struct Set Set; Set *set_new(hash_func_t hash_func, compare_func_t compare_func); void set_free(Set* s); +void set_free_free(Set *s); Set* set_copy(Set *s); int set_ensure_allocated(Set **s, hash_func_t hash_func, compare_func_t compare_func); diff --git a/src/unit.c b/src/unit.c index 3bb41a423..229f44c1a 100644 --- a/src/unit.c +++ b/src/unit.c @@ -354,9 +354,7 @@ void unit_free(Unit *u) { free(u->meta.description); free(u->meta.fragment_path); - while ((t = set_steal_first(u->meta.names))) - free(t); - set_free(u->meta.names); + set_free_free(u->meta.names); free(u->meta.instance); @@ -402,10 +400,7 @@ static void merge_names(Unit *u, Unit *other) { complete_move(&u->meta.names, &other->meta.names); - while ((t = set_steal_first(other->meta.names))) - free(t); - - set_free(other->meta.names); + set_free_free(other->meta.names); other->meta.names = NULL; other->meta.id = NULL; -- 2.30.2