diff --git a/src/bin/ephoto_thumb_browser.c b/src/bin/ephoto_thumb_browser.c index cb2acf6..95d37da 100644 --- a/src/bin/ephoto_thumb_browser.c +++ b/src/bin/ephoto_thumb_browser.c @@ -398,6 +398,9 @@ _thumb_item_text_get(void *data, Evas_Object *obj EINA_UNUSED, { Ephoto_Entry *e = data; + EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL); + if (!e->label) + return NULL; return strdup(e->label); }