mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57:44 +00:00
Applications: Use default execpromises parameter to pledge(..)
This commit is contained in:
parent
7c0495cbac
commit
9cfd520bb8
6 changed files with 9 additions and 9 deletions
|
@ -17,10 +17,10 @@
|
|||
|
||||
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
{
|
||||
TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd unix", nullptr));
|
||||
TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd unix"));
|
||||
auto app = GUI::Application::construct(arguments);
|
||||
|
||||
TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd", nullptr));
|
||||
TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd"));
|
||||
TRY(Core::System::unveil("/res", "r"));
|
||||
TRY(Core::System::unveil(nullptr, nullptr));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue