From 5a75b845245f3e94d38922dd728aec2f52c73437 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Wed, 17 Dec 2008 16:36:12 +0000 Subject: [PATCH] Calling e_object_del will make an attempt to remove object from actions hash. So do it later. SVN revision: 38189 --- src/bin/e_actions.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index fac7f814e..ef6e0979d 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -2655,11 +2655,13 @@ EAPI int e_actions_shutdown(void) { e_action_predef_name_all_del(); + + E_FREE_LIST(action_list, e_object_del); + action_names = eina_list_free(action_names); eina_hash_free(actions); actions = NULL; - E_FREE_LIST(action_list, e_object_del); return 1; }