diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-02 08:16:42 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-02 08:17:31 +0200 |
commit | 68a542623f5dc08d29d2b4bc87f7817b6aac4022 (patch) | |
tree | 5210e656334fcf2136385e43052510c26ba77026 /Userland/Services/LaunchServer/ClientConnection.cpp | |
parent | 889359b6f99a8ff043680ec5594dc369a9a372d9 (diff) | |
download | serenity-68a542623f5dc08d29d2b4bc87f7817b6aac4022.zip |
LaunchServer: Actually seal the allow-list on SealAllowList
Fixes #6804.
Diffstat (limited to 'Userland/Services/LaunchServer/ClientConnection.cpp')
-rw-r--r-- | Userland/Services/LaunchServer/ClientConnection.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Services/LaunchServer/ClientConnection.cpp b/Userland/Services/LaunchServer/ClientConnection.cpp index 47eeebd67b..591390e961 100644 --- a/Userland/Services/LaunchServer/ClientConnection.cpp +++ b/Userland/Services/LaunchServer/ClientConnection.cpp @@ -122,6 +122,8 @@ void ClientConnection::handle(const Messages::LaunchServer::SealAllowlist&) did_misbehave("Got more than one request to seal the allowed handlers list"); return; } + + m_allowlist_is_sealed = true; } } |