[11987] Fix possible memory leak in .gameobject add command

Thanks to Kid10 for pointing

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Schmoozerd 2012-05-05 14:53:01 +02:00
parent 744995d27c
commit 0645d10286
2 changed files with 14 additions and 16 deletions

View file

@ -1057,11 +1057,10 @@ bool ChatHandler::HandleGameObjectAddCommand(char* args)
if (!ExtractOptInt32(&args, spawntimeSecs, 0)) if (!ExtractOptInt32(&args, spawntimeSecs, 0))
return false; return false;
const GameObjectInfo *gInfo = ObjectMgr::GetGameObjectInfo(id); const GameObjectInfo* gInfo = ObjectMgr::GetGameObjectInfo(id);
if (!gInfo) if (!gInfo)
{ {
PSendSysMessage(LANG_GAMEOBJECT_NOT_EXIST,id); PSendSysMessage(LANG_GAMEOBJECT_NOT_EXIST, id);
SetSentErrorMessage(true); SetSentErrorMessage(true);
return false; return false;
} }
@ -1069,20 +1068,18 @@ bool ChatHandler::HandleGameObjectAddCommand(char* args)
if (gInfo->displayId && !sGameObjectDisplayInfoStore.LookupEntry(gInfo->displayId)) if (gInfo->displayId && !sGameObjectDisplayInfoStore.LookupEntry(gInfo->displayId))
{ {
// report to DB errors log as in loading case // report to DB errors log as in loading case
sLog.outErrorDb("Gameobject (Entry %u GoType: %u) have invalid displayId (%u), not spawned.",id, gInfo->type, gInfo->displayId); sLog.outErrorDb("Gameobject (Entry %u GoType: %u) have invalid displayId (%u), not spawned.", id, gInfo->type, gInfo->displayId);
PSendSysMessage(LANG_GAMEOBJECT_HAVE_INVALID_DATA,id); PSendSysMessage(LANG_GAMEOBJECT_HAVE_INVALID_DATA, id);
SetSentErrorMessage(true); SetSentErrorMessage(true);
return false; return false;
} }
Player *chr = m_session->GetPlayer(); Player* plr = m_session->GetPlayer();
float x = float(chr->GetPositionX()); float x = float(plr->GetPositionX());
float y = float(chr->GetPositionY()); float y = float(plr->GetPositionY());
float z = float(chr->GetPositionZ()); float z = float(plr->GetPositionZ());
float o = float(chr->GetOrientation()); float o = float(plr->GetOrientation());
Map *map = chr->GetMap(); Map* map = plr->GetMap();
GameObject* pGameObj = new GameObject;
// used guids from specially reserved range (can be 0 if no free values) // used guids from specially reserved range (can be 0 if no free values)
uint32 db_lowGUID = sObjectMgr.GenerateStaticGameObjectLowGuid(); uint32 db_lowGUID = sObjectMgr.GenerateStaticGameObjectLowGuid();
@ -1093,7 +1090,8 @@ bool ChatHandler::HandleGameObjectAddCommand(char* args)
return false; return false;
} }
if (!pGameObj->Create(db_lowGUID, gInfo->id, map, chr->GetPhaseMaskForSpawn(), x, y, z, o)) GameObject* pGameObj = new GameObject;
if (!pGameObj->Create(db_lowGUID, gInfo->id, map, plr->GetPhaseMaskForSpawn(), x, y, z, o))
{ {
delete pGameObj; delete pGameObj;
return false; return false;
@ -1103,7 +1101,7 @@ bool ChatHandler::HandleGameObjectAddCommand(char* args)
pGameObj->SetRespawnTime(spawntimeSecs); pGameObj->SetRespawnTime(spawntimeSecs);
// fill the gameobject data and save to the db // fill the gameobject data and save to the db
pGameObj->SaveToDB(map->GetId(), (1 << map->GetSpawnMode()),chr->GetPhaseMaskForSpawn()); pGameObj->SaveToDB(map->GetId(), (1 << map->GetSpawnMode()), plr->GetPhaseMaskForSpawn());
// this will generate a new guid if the object is in an instance // this will generate a new guid if the object is in an instance
if (!pGameObj->LoadFromDB(db_lowGUID, map)) if (!pGameObj->LoadFromDB(db_lowGUID, map))

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "11986" #define REVISION_NR "11987"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__