Eo: Print an ERR when deleting an object with data refs.
authorTom Hacohen <tom@stosb.com>
Thu, 18 Feb 2016 15:53:40 +0000 (15:53 +0000)
committerTom Hacohen <tom@stosb.com>
Thu, 18 Feb 2016 15:59:36 +0000 (15:59 +0000)
src/lib/eo/eo_private.h

index 869745c..f3ec7db 100644 (file)
@@ -245,12 +245,11 @@ _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);