mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 17:30:38 +00:00
HackStudio: Pledge "fattr"
HackStudio's pledges recently tightened due to changes in Core::EventLoop. However, it still needs the fattr pledge to be able to create a new project and set its permissions.
This commit is contained in:
parent
ed81eb610d
commit
e0a68d4b6e
Notes:
sideshowbarker
2024-07-18 18:06:35 +09:00
Author: https://github.com/Omerktn Commit: https://github.com/SerenityOS/serenity/commit/e0a68d4b6e9 Pull-request: https://github.com/SerenityOS/serenity/pull/7132
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ static void update_path_environment_variable();
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix thread ptrace", nullptr) < 0) {
|
||||
if (pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix fattr thread ptrace", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue