Base: Launch ImageDecoder at session start-up

This commit is contained in:
Lucas CHOLLET 2022-07-24 15:29:26 +02:00 committed by Linus Groh
commit 1da9375400
Notes: sideshowbarker 2024-07-17 08:15:21 +09:00
6 changed files with 12 additions and 13 deletions

View file

@ -34,7 +34,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/tmp/portal/clipboard", "rw"));
TRY(Core::System::unveil("/tmp/user/%uid/portal/filesystemaccess", "rw"));
TRY(Core::System::unveil("/tmp/portal/image", "rw"));
TRY(Core::System::unveil("/tmp/user/%uid/portal/image", "rw"));
TRY(Core::System::unveil("/etc/FileIconProvider.ini", "r"));
TRY(Core::System::unveil(nullptr, nullptr));