This commit is contained in:
Sam Gondelman 2018-10-16 18:24:14 -07:00 committed by GitHub
parent a8a0671d6c
commit 19fd7b5ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,11 +38,11 @@ std::shared_ptr<PickQuery> PickManager::findPick(unsigned int uid) const {
void PickManager::removePick(unsigned int uid) {
withWriteLock([&] {
auto type = _typeMap.find(uid);
if (type != _typeMap.end()) {
_picks[type->second].erase(uid);
_totalPickCounts[type->second]--;
_typeMap.erase(uid);
auto typeIt = _typeMap.find(uid);
if (typeIt != _typeMap.end()) {
_picks[typeIt->second].erase(uid);
_totalPickCounts[typeIt->second]--;
_typeMap.erase(typeIt);
}
});
}