fixed crash in rs-gui when stopping webui

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8220 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
electron128 2015-05-06 18:17:02 +00:00
parent df253e65c6
commit 96d45e7237

View File

@ -43,7 +43,8 @@ RsControlModule::RsControlModule(int argc, char **argv, StateTokenServer* sts, A
RsControlModule::~RsControlModule()
{
join();
if(isRunning())
join();
}
bool RsControlModule::processShouldExit()