discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=abffe6b6d2bff9d1b71be73547f6866060c14382

commit abffe6b6d2bff9d1b71be73547f6866060c14382
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Sat Mar 12 15:37:10 2016 -0500

    calling dirty() on a comp object for a deleted client should not print an 
error
---
 src/bin/e_comp_object.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index ca6f383..a17a6ce 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -3674,7 +3674,8 @@ e_comp_object_dirty(Evas_Object *obj)
      }
    if (!dirty)
      {
-        ERR("ERROR FETCHING PIXMAP FOR %p", cw->ec);
+        if (!e_object_is_del(E_OBJECT(cw->ec)))
+          ERR("ERROR FETCHING PIXMAP FOR %p", cw->ec);
         return;
      }
    e_comp_object_native_surface_set(obj, e_comp->gl);

-- 


Reply via email to