From 1f576da49e662a563d16ea4915e485516aa2b4ee Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 18 Feb 2016 19:28:41 +0000 Subject: [PATCH] Revert "Eo: Print an ERR when deleting an object with data refs." Revert this in the meanwhile. See discussion on the ML. This should be enabled though, and issues fixed. This reverts commit ec2f92e35f5a0836933d82b6b7f518a1d7550afc. --- src/lib/eo/eo_private.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/eo/eo_private.h b/src/lib/eo/eo_private.h index f3ec7db02b..869745c364 100644 --- a/src/lib/eo/eo_private.h +++ b/src/lib/eo/eo_private.h @@ -245,11 +245,12 @@ _eo_free(_Eo_Object *obj) { _Eo_Class *klass = (_Eo_Class*) obj->klass; +#ifdef EO_DEBUG if (obj->datarefcount) { ERR("Object %p data still referenced %d time(s).", obj, obj->datarefcount); } - +#endif _eo_id_release((Eo_Id) _eo_id_get(obj)); eina_spinlock_take(&klass->objects.trash_lock);