Core: Fix SIGABRT possibility in EXI_DeviceGecko

Fixes issue 7586
This commit is contained in:
Lioncash 2014-09-21 21:50:26 -04:00
parent 770a9a42a5
commit 858d18a67e
1 changed files with 4 additions and 2 deletions

View File

@ -23,10 +23,12 @@ GeckoSockServer::GeckoSockServer()
GeckoSockServer::~GeckoSockServer()
{
if (clientThread.joinable())
{
--client_count;
client_running = false;
clientThread.join();
client_running = false;
clientThread.join();
}
if (client_count <= 0)
{