discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=4c96e40f55015d1556e2c7badeffc62934fc577f
commit 4c96e40f55015d1556e2c7badeffc62934fc577f Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Tue Mar 10 18:28:18 2015 -0400 CRI on attempting to change a pixmap's client when pixmap already has client this should never occur, so do something if it does since it means there's a big problem --- src/bin/e_pixmap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index dbefc99..cfff95d 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -438,6 +438,7 @@ EAPI void e_pixmap_client_set(E_Pixmap *cp, E_Client *ec) { EINA_SAFETY_ON_NULL_RETURN(cp); + if (cp->client && ec) CRI("ACK!"); cp->client = ec; } --