2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

core: hle: kernel: k_server_session: Ensure SessionRequestManager is freed.

This commit is contained in:
bunnei 2022-03-11 00:13:21 -08:00
parent bfc4823e36
commit ed67e1dd10

View file

@ -49,6 +49,9 @@ void KServerSession::Destroy() {
parent->OnServerClosed();
parent->Close();
// Release host emulation members.
manager.reset();
}
void KServerSession::OnClientClosed() {