summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-06-25 20:14:04 -0500
committerSubv <subv2112@gmail.com>2017-06-25 23:38:29 -0500
commitc3c9175a1c14cd82ea9ee9147281802f5b94013e (patch)
treee36890c5a1ee1dcaeb49b3eeef572fc5b8443ace /src
parent88c93a7436ee744d61abaa7a3fb0fc59982b0a06 (diff)
Kernel/Sessions: Clean up the list of pending request threads of a session when the client endpoint is closed.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/client_session.cpp5
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() {
// TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set
// their WaitSynchronization result to 0xC920181A.
+
+ // Clean up the list of client threads with pending requests, they are unneeded now that the
+ // client endpoint is closed.
+ server->pending_requesting_threads.clear();
+ server->currently_handling = nullptr;
}
parent->client = nullptr;