examples/evas: do not attempt to free animator on window delete

Summary:
animators are implicitly destroyed for this case, and attempting to
manually destroy them just results in an error/failure and invalid reads
since this is a poorly designed api which can internally destroy itself

fix T7000
@fix

Reviewers: Hermet, devilhorns

Subscribers: segfaultxavi, cedric

Tags: #efl

Maniphest Tasks: T7000

Differential Revision: https://phab.enlightenment.org/D6488
This commit is contained in:
Mike Blumenkrantz 2018-07-18 15:31:00 +09:00 committed by Hermet Park
parent 096c01a818
commit 93ec34eda9
1 changed files with 0 additions and 1 deletions

View File

@ -65,7 +65,6 @@ static const char *batmans_path[] = {
static void
_on_delete(Ecore_Evas *ee EINA_UNUSED)
{
ecore_animator_del(animation);
ecore_main_loop_quit();
}