Procházet zdrojové kódy

missing itr end check BOO HISS bad me

Image před 2 roky
rodič
revize
f98318afc3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;