summaryrefslogtreecommitdiff
path: root/Userland/Services/LaunchServer/ClientConnection.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-02 08:16:42 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-02 08:17:31 +0200
commit68a542623f5dc08d29d2b4bc87f7817b6aac4022 (patch)
tree5210e656334fcf2136385e43052510c26ba77026 /Userland/Services/LaunchServer/ClientConnection.cpp
parent889359b6f99a8ff043680ec5594dc369a9a372d9 (diff)
downloadserenity-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.cpp2
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;
}
}