init: expand prop in 'file' am: 567f1874fd
am: 9d227e921f
Change-Id: Id51b5f55a583d09ec644cf83ab1b121ce798062e
This commit is contained in:
commit
396dd7d2e8
1 changed files with 5 additions and 0 deletions
|
|
@ -756,6 +756,11 @@ Result<Success> Service::ParseFile(std::vector<std::string>&& args) {
|
||||||
if (args[2] != "r" && args[2] != "w" && args[2] != "rw") {
|
if (args[2] != "r" && args[2] != "w" && args[2] != "rw") {
|
||||||
return Error() << "file type must be 'r', 'w' or 'rw'";
|
return Error() << "file type must be 'r', 'w' or 'rw'";
|
||||||
}
|
}
|
||||||
|
std::string expanded;
|
||||||
|
if (!expand_props(args[1], &expanded)) {
|
||||||
|
return Error() << "Could not expand property in file path '" << args[1] << "'";
|
||||||
|
}
|
||||||
|
args[1] = std::move(expanded);
|
||||||
if ((args[1][0] != '/') || (args[1].find("../") != std::string::npos)) {
|
if ((args[1][0] != '/') || (args[1].find("../") != std::string::npos)) {
|
||||||
return Error() << "file name must not be relative";
|
return Error() << "file name must not be relative";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue