From 91b8ee104eac7446f9b8cbea7ed9dce641740c8e Mon Sep 17 00:00:00 2001 From: raczman Date: Sun, 7 Mar 2010 15:20:19 +0100 Subject: Added new type-safe cast functions. This, when properly used, should get rid of most memory corruption issues, currently, casting types C-style with no checks leads to some abstract crashing. Functionality is same as with dynamic_cast<>, but with no RTTI check - so when casting into invalid type you will receive NULL, and most probably crash. At the same time, i took the liberty to convert most Player* casts to ToPlayer(). Still needs crapload of casts being moved to new facility. --HG-- branch : trunk --- src/game/WorldSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/WorldSession.cpp') diff --git a/src/game/WorldSession.cpp b/src/game/WorldSession.cpp index ddf0c9173bd..cf487b1ca76 100644 --- a/src/game/WorldSession.cpp +++ b/src/game/WorldSession.cpp @@ -329,7 +329,7 @@ void WorldSession::LogoutPlayer(bool Save) if(owner) { if(owner->GetTypeId() == TYPEID_PLAYER) - aset.insert((Player*)owner); + aset.insert(owner->ToPlayer()); } else if((*itr)->GetTypeId() == TYPEID_PLAYER) -- cgit v1.2.3