From 68a542623f5dc08d29d2b4bc87f7817b6aac4022 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 2 May 2021 08:16:42 +0200 Subject: [PATCH] LaunchServer: Actually seal the allow-list on SealAllowList Fixes #6804. --- Userland/Services/LaunchServer/ClientConnection.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } }