Fixed leaking relocation table memory in JIT.

This commit is contained in:
David Anderson 2008-10-26 23:50:54 -05:00
parent 547f7aecc1
commit e48bba5b4d

View File

@ -37,7 +37,10 @@ BaseRuntime::~BaseRuntime()
free(m_FuncCache);
delete m_pCtx;
delete m_pCo;
if (m_pCo != NULL)
{
m_pCo->Abort();
}
free(m_pPlugin->base);
delete [] m_pPlugin->memory;