elm: Fix shutdown of atspi (unregister handlers)

@fix
This commit is contained in:
Jean-Philippe Andre 2017-09-26 17:56:56 +09:00
parent 25520583a7
commit ba12712e0d
1 changed files with 5 additions and 0 deletions

View File

@ -612,6 +612,11 @@ _elm_interface_atspi_accessible_efl_object_destructor(Eo *obj, Elm_Interface_Ats
void
_elm_interface_atspi_shutdown(void)
{
Elm_Atspi_Event_Handler *hdl;
EINA_LIST_FREE(global_callbacks, hdl)
free(hdl);
ELM_SAFE_DEL(root);
}