From: Cedric BAIL Date: Thu, 23 Jun 2011 15:56:31 +0000 (+0000) Subject: elementary: fix stringshare refcounting. X-Git-Tag: upstream/1.20.0~7116^2~14^2~9619 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6a0e690a2038d9b14cd5f8d2e8fb85161a330e5;p=platform%2Fupstream%2Fefl.git elementary: fix stringshare refcounting. SVN revision: 60639 --- diff --git a/legacy/elementary/src/lib/elm_icon.c b/legacy/elementary/src/lib/elm_icon.c index f4173fa..50964b3 100644 --- a/legacy/elementary/src/lib/elm_icon.c +++ b/legacy/elementary/src/lib/elm_icon.c @@ -642,18 +642,6 @@ _icon_size_min_get(Evas_Object *icon) return (size < 32) ? 32 : size; } -/** - * Set the theme, as standard, for an icon. - * If theme was not found and it is the absolute path of an image file, this - * image will be used. - * - * @param obj The icon object - * @param name The theme name - * - * @return (1 = success, 0 = error) - * - * @ingroup Icon - */ static Eina_Bool _elm_icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name) { @@ -706,12 +694,27 @@ _elm_icon_standard_resize(void *data, void *event_info __UNUSED__) { Widget_Data *wd = data; + const char *refup = eina_stringshare_ref(wd->stdicon); if (!_elm_icon_standard_set(wd, obj, wd->stdicon)) evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE, _elm_icon_standard_resize, wd); + + eina_stringshare_del(refup); } +/** + * Set the theme, as standard, for an icon. + * If theme was not found and it is the absolute path of an image file, this + * image will be used. + * + * @param obj The icon object + * @param name The theme name + * + * @return (1 = success, 0 = error) + * + * @ingroup Icon + */ EAPI Eina_Bool elm_icon_standard_set(Evas_Object *obj, const char *name) {