1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 01:55:32 +03:00

shared/install: fix trivial memleak

We lost the reference when setting path second time.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-07-12 08:15:21 -04:00
parent b463b81399
commit d7b478b448

View File

@ -506,7 +506,7 @@ static int find_symlinks_in_scope(
UnitFileState *state) {
int r;
_cleanup_free_ char *path = NULL;
_cleanup_free_ char *path2 = NULL;
bool same_name_link_runtime = false, same_name_link = false;
assert(scope >= 0);
@ -514,6 +514,7 @@ static int find_symlinks_in_scope(
assert(name);
if (scope == UNIT_FILE_SYSTEM || scope == UNIT_FILE_GLOBAL) {
_cleanup_free_ char *path = NULL;
/* First look in runtime config path */
r = get_config_path(scope, true, root_dir, &path);
@ -530,11 +531,11 @@ static int find_symlinks_in_scope(
}
/* Then look in the normal config path */
r = get_config_path(scope, false, root_dir, &path);
r = get_config_path(scope, false, root_dir, &path2);
if (r < 0)
return r;
r = find_symlinks(name, path, &same_name_link);
r = find_symlinks(name, path2, &same_name_link);
if (r < 0)
return r;
else if (r > 0) {