From ecbd3ba607232a7b6e30f1839f013cf1830457f3 Mon Sep 17 00:00:00 2001 From: Shinwoo Kim Date: Fri, 7 Jun 2013 13:28:25 +0900 Subject: [PATCH] [access] check whether the access info is NULL or not Change-Id: Iac34cc76d9ae3a74f23db61e12d02239521ee621 --- src/lib/elm_access.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/elm_access.c b/src/lib/elm_access.c index f3b573a..7e23140 100644 --- a/src/lib/elm_access.c +++ b/src/lib/elm_access.c @@ -1396,6 +1396,10 @@ _elm_access_widget_item_unregister(Elm_Widget_Item *item) if (!item->access_obj) return; Elm_Access_Info *ac = _elm_access_object_get(item->access_obj); + /* ac could be NULL, when the hover object is deleted only. + access object is not deleted even though the hover object is delete only */ + if (!ac) return; + ho = ac->hoverobj; evas_object_event_callback_del_full(ho, EVAS_CALLBACK_RESIZE, -- 2.7.4