(svn r15124) -Fix: last memory leak related to NoAI

This commit is contained in:
truebrain 2009-01-17 15:38:37 +00:00
parent 3abb8abd07
commit 4bc7afae41

View File

@ -148,6 +148,7 @@ AIInstance::AIInstance(AIInfo *info) :
AIInstance::~AIInstance()
{
if (instance != NULL) this->engine->ReleaseObject(this->instance);
if (engine != NULL) delete this->engine;
delete this->storage;
delete this->controller;
@ -246,7 +247,9 @@ void AIInstance::Died()
DEBUG(ai, 0, "The AI died unexpectedly.");
this->is_dead = true;
this->engine->ReleaseObject(this->instance);
delete this->engine;
this->instance = NULL;
this->engine = NULL;
}