evas engine cache - drop useless iff that assert already checked

CID 1267465 pointed this out - assert(eim) already checked this so no
need to do it again - looks confusing
This commit is contained in:
Carsten Haitzler 2016-07-11 22:09:12 +09:00
parent 2b413d3f87
commit 485074df3a
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ evas_cache_engine_image_dirty(Engine_Image_Entry *eim, unsigned int x, unsigned
return eim_dirty;
on_error:
if (eim) evas_cache_engine_image_drop(eim);
evas_cache_engine_image_drop(eim);
if (eim_dirty && eim_dirty != eim)
evas_cache_engine_image_drop(eim_dirty);
else