ecore_evas: skip deleted Ecore_Evas while searching for a general animator source.

This commit is contained in:
Cedric Bail 2017-09-22 14:37:25 -07:00
parent e4cd67c7d6
commit 6232fa2a9b
1 changed files with 2 additions and 1 deletions

View File

@ -3129,7 +3129,8 @@ _ecore_evas_tick_source_find(void)
_general_tick = NULL;
EINA_INLIST_FOREACH(ecore_evases, ee)
if (ee->engine.func->fn_animator_register &&
if (!ee->deleted &&
ee->engine.func->fn_animator_register &&
ee->engine.func->fn_animator_unregister)
{
if (ee->anim_count)