diff --git a/Userland/Utilities/groupdel.cpp b/Userland/Utilities/groupdel.cpp index fb2261dc8d..53dbf4e0d6 100644 --- a/Userland/Utilities/groupdel.cpp +++ b/Userland/Utilities/groupdel.cpp @@ -19,6 +19,7 @@ ErrorOr serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio wpath rpath cpath fattr proc exec")); TRY(Core::System::unveil("/etc/", "rwc")); TRY(Core::System::unveil("/bin/rm", "x")); + TRY(Core::System::unveil(nullptr, nullptr)); DeprecatedString groupname;