From 7e604e279ec8464c84caacb9acbdf32198f5fa48 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 3 Nov 2011 05:48:05 +0000 Subject: [PATCH] fix crash when object type is null as pointed out by Jeonghyun Yun SVN revision: 64677 --- src/lib/els_icon.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/lib/els_icon.c b/src/lib/els_icon.c index 914e360fd..eb123a074 100644 --- a/src/lib/els_icon.c +++ b/src/lib/els_icon.c @@ -214,10 +214,13 @@ _els_smart_icon_size_get(const Evas_Object *obj, int *w, int *h) Smart_Data *sd; int tw, th; int cw, ch; + const char *type; sd = evas_object_smart_data_get(obj); if (!sd) return; - if (!strcmp(evas_object_type_get(sd->obj), "edje")) + type = evas_object_type_get(sd->obj); + if (!type) return; + if (!strcmp(type, "edje")) edje_object_size_min_get(sd->obj, &tw, &th); else evas_object_image_size_get(sd->obj, &tw, &th); @@ -499,13 +502,16 @@ static void _smart_reconfigure(Smart_Data *sd) { Evas_Coord x, y, w, h; + const char *type; if (!sd->obj) return; w = sd->w; h = sd->h; - if (!strcmp(evas_object_type_get(sd->obj), "edje")) + type = evas_object_type_get(sd->obj); + if (!type) return; + if (!strcmp(type, "edje")) { x = sd->x; y = sd->y; -- 2.34.1