1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

Games: Remove unveiling /tmp/portal/config

Config::pledge_domains is applied before, hence /tmp/portal/config
can and should be veiled.
This commit is contained in:
Ralf Donau 2021-08-26 20:51:53 +02:00 committed by Andreas Kling
parent 5a0be07cf0
commit a6fc80f069
3 changed files with 0 additions and 15 deletions

View file

@ -38,11 +38,6 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/tmp/portal/config", "rw") < 0) {
perror("unveil");
return 1;
}
if (unveil("/bin/ChessEngine", "x") < 0) {
perror("unveil");
return 1;