LaunchServer: Actually seal the allow-list on SealAllowList

Fixes #6804.
This commit is contained in:
Andreas Kling 2021-05-02 08:16:42 +02:00
parent 889359b6f9
commit 68a542623f
Notes: sideshowbarker 2024-07-18 18:47:35 +09:00

View file

@ -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;
}
}