Browse Source

missing itr end check BOO HISS bad me

Image 2 years ago
parent
commit
f98318afc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/WorldServer/client.h

+ 1 - 1
EQ2/source/WorldServer/client.h

@@ -509,7 +509,7 @@ public:
 		bool res = false;
 		MSpellDetails.readlock(__FUNCTION__, __LINE__);
 		std::map<int32, int32>::iterator itr = sent_spell_details.find(id);
-		if(itr->second == tier)
+		if(itr != sent_spell_details.end() && itr->second == tier)
 			res = true;
 		MSpellDetails.releasereadlock(__FUNCTION__, __LINE__);
 		return res;