fixed memory leak
This commit is contained in:
parent
85c37c6a39
commit
4aaa2f8e0f
|
@ -488,6 +488,10 @@ int unload_amxscript(AMX* amx, void** program)
|
||||||
if (pHandler)
|
if (pHandler)
|
||||||
delete pHandler;
|
delete pHandler;
|
||||||
|
|
||||||
|
optimizer_s *opt = (optimizer_s *)amx->usertags[UT_OPTIMIZER];
|
||||||
|
if (opt)
|
||||||
|
delete opt;
|
||||||
|
|
||||||
CList<CScript, AMX*>::iterator a = g_loadedscripts.find(amx);
|
CList<CScript, AMX*>::iterator a = g_loadedscripts.find(amx);
|
||||||
|
|
||||||
if (a)
|
if (a)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user