1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-24 14:50:17 +03:00

cgroup: fix minor memory leak

This commit is contained in:
Lennart Poettering 2010-04-06 02:35:59 +02:00
parent 6ab3c207a9
commit 58783cdaec

View File

@ -357,6 +357,9 @@ static int install_release_agent(Manager *m, const char *mount_point) {
return -EIO;
}
free(p);
free(c);
return 0;
}