1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-03 05:42:06 +00:00

LibWeb: Port the WebContent service to Core::AnonymousBuffer for themes

This commit is contained in:
Andreas Kling 2021-01-16 17:22:35 +01:00
parent 04f95f9160
commit d846808122
4 changed files with 7 additions and 12 deletions

View file

@ -32,7 +32,7 @@
int main(int, char**)
{
Core::EventLoop event_loop;
if (pledge("stdio sendfd shared_buffer accept unix rpath recvfd", nullptr) < 0) {
if (pledge("stdio recvfd sendfd shared_buffer accept unix rpath recvfd", nullptr) < 0) {
perror("pledge");
return 1;
}