elm_thumb.c: ELM_SAFE_FREE adoption.

I splited ELM_SAFE_FREE refactoring patches. One commit per each file as recommended.
For the detail, please refer 3072dab12f12fe83fb5a628d15efd5cded11787f.
This commit is contained in:
Daniel Juyung Seo 2013-05-29 21:08:22 +09:00
parent 90f4afc682
commit 29a3cb3105
1 changed files with 3 additions and 10 deletions

View File

@ -189,11 +189,8 @@ _thumb_retry(Elm_Thumb_Smart_Data *sd)
_thumb_ready_inform(sd, sd->thumb.thumb_path, sd->thumb.thumb_key);
eina_stringshare_del(sd->thumb.thumb_path);
sd->thumb.thumb_path = NULL;
eina_stringshare_del(sd->thumb.thumb_key);
sd->thumb.thumb_key = NULL;
ELM_SAFE_FREE(sd->thumb.thumb_path, eina_stringshare_del);
ELM_SAFE_FREE(sd->thumb.thumb_key, eina_stringshare_del);
return EINA_TRUE;
@ -473,11 +470,7 @@ _elm_thumb_smart_hide(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
sd->thumb.retry = EINA_FALSE;
}
if (sd->eeh)
{
ecore_event_handler_del(sd->eeh);
sd->eeh = NULL;
}
ELM_SAFE_FREE(sd->eeh, ecore_event_handler_del);
#endif
}