From 361cc51340311f0e67b71249d8bd730d8a97b409 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 23 Oct 2011 12:01:36 +0000 Subject: [PATCH] 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 --- legacy/ecore/src/lib/ecore_imf/ecore_imf_module.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/ecore/src/lib/ecore_imf/ecore_imf_module.c b/legacy/ecore/src/lib/ecore_imf/ecore_imf_module.c index b6b59ee706..946f5bcbf9 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_module.c +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_module.c @@ -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; } }