comp: no need to assign pointer before return

As we return after the list free, no need to set the pointer.

CID 1087717
This commit is contained in:
Sebastian Dransfeld 2014-03-24 13:02:56 +01:00
parent ef208ad96b
commit 168dc8ef38
1 changed files with 2 additions and 2 deletions

View File

@ -135,10 +135,10 @@ _e_comp_visible_object_is(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coo
{
if (evas_object_clip_get(o))
{
children = eina_list_free(children);
eina_list_free(children);
return _e_comp_visible_object_clip_is(o);
}
children = eina_list_free(children);
eina_list_free(children);
return EINA_TRUE;
}
}