Calling e_object_del will make an attempt to remove object from actions

hash. So do it later.


SVN revision: 38189
This commit is contained in:
Cedric BAIL 2008-12-17 16:36:12 +00:00
parent c15693083e
commit 5a75b84524
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}