summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-03-12 15:37:10 -0500
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-03-12 15:37:10 -0500
commitabffe6b6d2bff9d1b71be73547f6866060c14382 (patch)
tree230ee60391972423704dc7b32810feb18673e4c3
parent1a9148608304913e0ff4bb1b242f297777d91817 (diff)
downloadenlightenment-abffe6b6d2bff9d1b71be73547f6866060c14382.tar.gz
calling dirty() on a comp object for a deleted client should not print an error
-rw-r--r--src/bin/e_comp_object.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index ca6f383256..a17a6cee0b 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);