Преглед изворни кода

missing itr end check BOO HISS bad me

Image пре 2 година
родитељ
комит
f98318afc3
1 измењених фајлова са 1 додато и 1 уклоњено
  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;