mirror of
https://github.com/systemd/systemd.git
synced 2025-01-11 09:18:07 +03:00
core/execute: escape the separator in exported paths
Our paths shouldn't even contain ":", but let's escape it if one somehow sneaks in.
This commit is contained in:
parent
d4d9f034b1
commit
48904c8bfd
@ -1927,7 +1927,7 @@ static int build_environment(
|
||||
if (!pre)
|
||||
return -ENOMEM;
|
||||
|
||||
joined = strv_join_full(c->directories[t].paths, ":", pre, false);
|
||||
joined = strv_join_full(c->directories[t].paths, ":", pre, true);
|
||||
if (!joined)
|
||||
return -ENOMEM;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user