Merge pull request #9927 from OatmealDome/double-usbgecko

GeckoSockServer: Only join connectionThread if it is joinable
This commit is contained in:
JMC47
2021-07-20 22:18:33 -04:00
committed by GitHub

View File

@ -43,7 +43,7 @@ GeckoSockServer::~GeckoSockServer()
clientThread.join();
}
if (client_count <= 0)
if (client_count <= 0 && connectionThread.joinable())
{
server_running.Clear();
connectionThread.join();