mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:08:10 +00:00
Kernel: fork()ed children should inherit pledge promises :^)
Update various places that now need wider promises as they are not reset by fork() anymore.
This commit is contained in:
parent
b39e732eb3
commit
f187374c1b
5 changed files with 9 additions and 7 deletions
|
@ -77,7 +77,7 @@ static void mount_all_filesystems()
|
|||
|
||||
int main(int, char**)
|
||||
{
|
||||
if (pledge("stdio proc exec unix rpath cpath chown fattr id", nullptr) < 0) {
|
||||
if (pledge("stdio proc exec unix rpath wpath cpath chown fattr id", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue