From 4c96e40f55015d1556e2c7badeffc62934fc577f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 10 Mar 2015 18:28:18 -0400 Subject: [PATCH] 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 dbefc9971..cfff95d0a 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; }