1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-10 05:18:17 +03:00

network: add missing set_free() for Manager.dirty_links

This commit is contained in:
Yu Watanabe 2018-10-04 03:59:16 +09:00
parent 1046bf9b1a
commit 9bcb210ebc

View File

@ -1455,8 +1455,9 @@ void manager_free(Manager *m) {
link_unref(link);
}
hashmap_free(m->links);
set_free_with_destructor(m->dirty_links, link_unref);
hashmap_free(m->links);
set_free(m->links_requesting_uuid);
set_free(m->duids_requesting_uuid);