mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 06:07:35 +00:00
TextEditor: Pledge "unix" so we can load images in Markdown preview
We should think a bit more about how we want preview content to interact with the outside world, but for now let's just make it run.
This commit is contained in:
parent
e8a5c10382
commit
6c0fed3866
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ int main(int argc, char** argv)
|
|||
|
||||
GUI::Application app(argc, argv);
|
||||
|
||||
if (pledge("stdio thread rpath accept cpath wpath shared_buffer", nullptr) < 0) {
|
||||
if (pledge("stdio thread rpath accept cpath wpath shared_buffer unix", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue