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)
|
||||
delete pHandler;
|
||||
|
||||
optimizer_s *opt = (optimizer_s *)amx->usertags[UT_OPTIMIZER];
|
||||
if (opt)
|
||||
delete opt;
|
||||
|
||||
CList<CScript, AMX*>::iterator a = g_loadedscripts.find(amx);
|
||||
|
||||
if (a)
|
||||
|
|
Loading…
Reference in New Issue
Block a user