avoid segfault when label is NULL

This commit is contained in:
Boris Faure 2016-09-25 17:57:14 +02:00
parent 37542da610
commit 5890d90f84
1 changed files with 3 additions and 0 deletions

View File

@ -398,6 +398,9 @@ _thumb_item_text_get(void *data, Evas_Object *obj EINA_UNUSED,
{ {
Ephoto_Entry *e = data; Ephoto_Entry *e = data;
EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL);
if (!e->label)
return NULL;
return strdup(e->label); return strdup(e->label);
} }