cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=880500f966d3c30bc8c5c83a002f5b9823819654
commit 880500f966d3c30bc8c5c83a002f5b9823819654 Author: Cedric BAIL <[email protected]> Date: Wed Jun 14 10:00:04 2017 -0700 evas: actually free the cow allocated memory. --- src/lib/evas/canvas/evas_object_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/evas/canvas/evas_object_main.c b/src/lib/evas/canvas/evas_object_main.c index b1547b68c2..8dbd554182 100644 --- a/src/lib/evas/canvas/evas_object_main.c +++ b/src/lib/evas/canvas/evas_object_main.c @@ -472,6 +472,7 @@ evas_object_free(Evas_Object *eo_obj, Eina_Bool clean_layer) eina_cow_free(evas_object_state_cow, (const Eina_Cow_Data**) &obj->prev); eina_cow_free(evas_object_3d_cow, (const Eina_Cow_Data**) &obj->data_3d); eina_cow_free(evas_object_mask_cow, (const Eina_Cow_Data**) &obj->mask); + eina_cow_free(evas_object_events_cow, (const Eina_Cow_Data**) &obj->events); efl_data_unref(eo_obj, obj->private_data); obj->private_data = NULL; --
