Fixup minor use after free issues, and improper mutex usage in meshrepo. Also fixed some compiler warnings.

This commit is contained in:
Shyotl
2020-03-15 00:46:57 -05:00
parent d2d172f6ec
commit 26976b715d
6 changed files with 35 additions and 29 deletions

View File

@@ -335,7 +335,7 @@ void LLAvatarNameCache::requestNamesViaCapability()
while(!sAskQueue.empty())
{
it = sAskQueue.begin();
const LLUUID& agent_id = *it;
const LLUUID agent_id = *it;
sAskQueue.erase(it);
if (url.empty())