Skip to content
Snippets Groups Projects
Commit 72c43237 authored by Richard Linden's avatar Richard Linden
Browse files

STORM-1039 FIXED Bad iterator access in llavatarnamecache.cpp:564

missed else case
parent 443e38f9
No related branches found
No related tags found
No related merge requests found
......@@ -566,6 +566,10 @@ void LLAvatarNameCache::eraseUnrefreshed()
<< LL_ENDL;
sCache.erase(it++);
}
else
{
++it;
}
}
LL_INFOS("AvNameCache") << sCache.size() << " cached avatar names" << LL_ENDL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment