set: introduce set_free_free()

This commit is contained in:
Lennart Poettering 2010-06-15 02:45:26 +02:00
parent 3930341a76
commit 53ec43c61d
4 changed files with 13 additions and 12 deletions

View file

@ -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)

View file

@ -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);
}

View file

@ -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);

View file

@ -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;