sysv-generator: fix memory leak on failure

This fixes a memory leak introduced by
1ed0c19f81

(cherry picked from commit b3fae863ef)
This commit is contained in:
Lennart Poettering
2015-01-16 00:15:01 -05:00
committed by Zbigniew Jędrzejewski-Szmek
parent 63e1555696
commit 852efd7179
+9 -5
View File
@@ -760,13 +760,11 @@ static int enumerate_sysv(LookupPaths lp, Hashmap *all_services) {
service->name = name;
service->path = fpath;
r = load_sysv(service);
if (r < 0)
continue;
r = hashmap_put(all_services, service->name, service);
if (r < 0)
if (r < 0) {
free(service);
return log_oom();
}
name = fpath = NULL;
}
@@ -947,6 +945,12 @@ int main(int argc, char *argv[]) {
return EXIT_FAILURE;
}
HASHMAP_FOREACH(service, all_services, j) {
q = load_sysv(service);
if (q < 0)
continue;
}
HASHMAP_FOREACH(service, all_services, j) {
q = fix_order(service, all_services);
if (q < 0)