Limit remote closed session removal to SM service (#6248)

This commit is contained in:
gdkchan 2024-02-03 15:40:09 -03:00 committed by GitHub
parent d704bcd93b
commit e5066449a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -287,7 +287,7 @@ namespace Ryujinx.HLE.HOS.Services
_wakeEvent.WritableEvent.Clear(); _wakeEvent.WritableEvent.Clear();
} }
} }
else if (rc == KernelResult.PortRemoteClosed && signaledIndex >= 0) else if (rc == KernelResult.PortRemoteClosed && signaledIndex >= 0 && SmObjectFactory != null)
{ {
DestroySession(handles[signaledIndex]); DestroySession(handles[signaledIndex]);
} }