Merge pull request #3024 from firewave/menu

fixed MT06816 (alloc-dealloc-mismatch in menu.cpp) (nw)
This commit is contained in:
ajrhacker 2018-01-06 20:02:39 -05:00 committed by GitHub
commit 6a65afba2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,7 +261,7 @@ menu::~menu()
{
pool *const ppool = m_pool;
m_pool = m_pool->next;
global_free(ppool);
global_free_array(ppool);
}
}