From 04b734501a6be77501b21f787607963f253ebc32 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 5 Jan 2020 17:53:42 +0100 Subject: [PATCH] LibCore: Oops, we were forgetting to destroy disconnected RPC clients --- Libraries/LibCore/CEventLoop.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibCore/CEventLoop.cpp b/Libraries/LibCore/CEventLoop.cpp index 1dac8af3b2..b845bc2244 100644 --- a/Libraries/LibCore/CEventLoop.cpp +++ b/Libraries/LibCore/CEventLoop.cpp @@ -123,6 +123,7 @@ public: void shutdown() { + s_rpc_clients.remove(m_client_id); s_id_allocator.deallocate(m_client_id); }