Removed unload of the plugins, because it causes a crash.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8482 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-06-15 23:16:39 +00:00
parent 0ee754939e
commit 0ac3be47a1

View File

@ -186,11 +186,12 @@ void RsPluginManager::stopPlugins()
// delete _plugins[i].plugin;
// _plugins[i].plugin = NULL;
}
if (_plugins[i].handle)
{
dlclose(_plugins[i].handle);
_plugins[i].handle = NULL;
}
// Causes a crash
// if (_plugins[i].handle)
// {
// dlclose(_plugins[i].handle);
// _plugins[i].handle = NULL;
// }
}
}