evas: Fix potential crash after image preload

E17 crashed when running under cserve2.
Not sure about this commit. Also what about the other functions.
This commit is contained in:
Jean-Philippe Andre 2013-09-03 15:53:08 +09:00
parent 31a5bfb464
commit bfe3fe27df
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,8 @@ void
evas_object_inform_call_image_preloaded(Evas_Object *eo_obj)
{
Evas_Object_Protected_Data *obj = eo_data_scope_get(eo_obj, EVAS_OBJ_CLASS);
EINA_SAFETY_ON_NULL_RETURN(obj);
if (!_evas_object_image_preloading_get(eo_obj)) return;
_evas_object_image_preloading_check(eo_obj);
_evas_object_image_preloading_set(eo_obj, 0);