diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/client_session.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/client_session.cpp b/src/core/hle/kernel/client_session.cpp index 78a64d105..e9cf05747 100644 --- a/src/core/hle/kernel/client_session.cpp +++ b/src/core/hle/kernel/client_session.cpp | |||
| @@ -27,6 +27,11 @@ ClientSession::~ClientSession() { | |||
| 27 | 27 | ||
| 28 | // TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set | 28 | // TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set |
| 29 | // their WaitSynchronization result to 0xC920181A. | 29 | // their WaitSynchronization result to 0xC920181A. |
| 30 | |||
| 31 | // Clean up the list of client threads with pending requests, they are unneeded now that the | ||
| 32 | // client endpoint is closed. | ||
| 33 | server->pending_requesting_threads.clear(); | ||
| 34 | server->currently_handling = nullptr; | ||
| 30 | } | 35 | } |
| 31 | 36 | ||
| 32 | parent->client = nullptr; | 37 | parent->client = nullptr; |