[access] remove double free possibility by removing object data

This commit is contained in:
Shinwoo Kim 2013-08-09 19:03:56 +09:00
parent fb66d6963b
commit 7af04bd5ec
1 changed files with 1 additions and 0 deletions

View File

@ -1057,6 +1057,7 @@ _elm_access_object_unregister(Evas_Object *obj, Evas_Object *hoverobj)
Action_Info *a;
a = evas_object_data_get(obj, "_elm_access_action_info");
evas_object_data_del(obj, "_elm_access_action_info");
if (a) free(a);
}