diff options
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/main.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/PixelPaint/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index 988ac7f0f2..a18327aada 100644 --- a/Userland/Applications/Browser/main.cpp +++ b/Userland/Applications/Browser/main.cpp @@ -85,7 +85,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/etc/passwd", "r")); TRY(Core::System::unveil("/etc/timezone", "r")); 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("/tmp/user/%uid/portal/webcontent", "rw")); TRY(Core::System::unveil("/tmp/user/%uid/portal/request", "rw")); TRY(Core::System::unveil("/bin/BrowserSettings", "x")); diff --git a/Userland/Applications/PixelPaint/main.cpp b/Userland/Applications/PixelPaint/main.cpp index d3eb61a4b5..bb73e1e4a8 100644 --- a/Userland/Applications/PixelPaint/main.cpp +++ b/Userland/Applications/PixelPaint/main.cpp @@ -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)); |