diff --git a/Applications/About/main.cpp b/Applications/About/main.cpp index 05f84ce99a..55753b3b17 100644 --- a/Applications/About/main.cpp +++ b/Applications/About/main.cpp @@ -47,6 +47,13 @@ int main(int argc, char** argv) return 1; } + if (unveil("/res", "r") < 0) { + perror("unveil"); + return 1; + } + + unveil(nullptr, nullptr); + auto window = GWindow::construct(); window->set_title("About SerenityOS"); Rect window_rect { 0, 0, 240, 180 };