Browse Source

Fix out-of-bounds crash when fiddling with NPCs

Florian Meißner 11 years ago
parent
commit
07adadcb58
  1. 4
      Sources/Plasma/PubUtilLib/plNetClient/plNetClientMgr.cpp

4
Sources/Plasma/PubUtilLib/plNetClient/plNetClientMgr.cpp

@ -784,7 +784,9 @@ plSynchedObject* plNetClientMgr::GetLocalPlayer(bool forceLoad) const
plSynchedObject* plNetClientMgr::GetNPC(uint32_t i) const
{
return fNPCKeys[i] ? plSynchedObject::ConvertNoRef(fNPCKeys[i]->ObjectIsLoaded()) : nil;
if (i >= fNPCKeys.size())
return nullptr;
return plSynchedObject::ConvertNoRef(fNPCKeys[i]->ObjectIsLoaded());
}
void plNetClientMgr::AddNPCKey(const plKey& npc)

Loading…
Cancel
Save