1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-04 13:51:24 +03:00

user-util: simplify paths retrieved from $HOME and $SHELL

Let's add some extra paranoia, after #11910
This commit is contained in:
Lennart Poettering 2019-03-07 10:54:11 +01:00
parent d575f88bbe
commit db246781a0

View File

@ -463,7 +463,7 @@ int get_home_dir(char **_h) {
if (!h)
return -ENOMEM;
*_h = h;
*_h = path_simplify(h, true);
return 0;
}
@ -501,7 +501,7 @@ int get_home_dir(char **_h) {
if (!h)
return -ENOMEM;
*_h = h;
*_h = path_simplify(h, true);
return 0;
}
@ -520,7 +520,7 @@ int get_shell(char **_s) {
if (!s)
return -ENOMEM;
*_s = s;
*_s = path_simplify(s, true);
return 0;
}
@ -558,7 +558,7 @@ int get_shell(char **_s) {
if (!s)
return -ENOMEM;
*_s = s;
*_s = path_simplify(s, true);
return 0;
}