Ecore imf: Free the module list on shutdown.

Freeing the content (using eina_module_list_free) is not enough, we need
to also free the array itself.

SVN revision: 64326
This commit is contained in:
Tom Hacohen 2011-10-23 12:01:36 +00:00
parent 93f1aa981e
commit 361cc51340
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ ecore_imf_module_shutdown(void)
if (module_list)
{
eina_module_list_free(module_list);
eina_array_free(module_list);
module_list = NULL;
}
}