mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Inspector: Use pledge() and unveil()
This commit is contained in:
parent
dc039fdc7e
commit
af29dff224
Notes:
sideshowbarker
2024-07-19 08:53:10 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/af29dff2244
1 changed files with 23 additions and 0 deletions
|
@ -45,6 +45,23 @@
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (pledge("stdio shared_buffer rpath accept unix cpath fattr", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/res", "r") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/tmp", "rwc") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
unveil(nullptr, nullptr);
|
||||
|
||||
if (argc != 2)
|
||||
print_usage_and_exit();
|
||||
|
||||
|
@ -91,5 +108,11 @@ int main(int argc, char** argv)
|
|||
|
||||
window->show();
|
||||
remote_process.update();
|
||||
|
||||
if (pledge("stdio shared_buffer rpath accept unix", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue