1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 09:21:26 +03:00

util-lib: kill duplicate slashes in lookup paths

Since we're munging the array anyway, we can make the output a bit
nicer too.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-11-23 13:02:21 +01:00
parent ca4adeb791
commit 32a8f700a4

View File

@ -223,8 +223,8 @@ int path_strv_make_absolute_cwd(char **l) {
if (r < 0) if (r < 0)
return r; return r;
free(*s); path_kill_slashes(t);
*s = t; free_and_replace(*s, t);
} }
return 0; return 0;