From: Mike Blumenkrantz Date: Tue, 29 Sep 2015 16:53:59 +0000 (-0400) Subject: do not roundtrip for x11 client message DBG if it will not be visible X-Git-Tag: upstream/0.20.0~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a7c9ad5b999fc795934119c02a3e57c2e4e166f;p=platform%2Fupstream%2Fenlightenment.git do not roundtrip for x11 client message DBG if it will not be visible also free fetched atom name --- diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 8cef18f..9de09ae 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -2142,7 +2142,14 @@ _e_comp_x_message(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_Cl } #endif else - DBG("missed client message '%s' for %u", ecore_x_atom_name_get(ev->message_type), ev->win); + { + char *name; + + if (!eina_log_domain_level_check(e_log_dom, EINA_LOG_LEVEL_DBG)) return ECORE_CALLBACK_RENEW; + name = ecore_x_atom_name_get(ev->message_type); + DBG("missed client message '%s' for %u", name, ev->win); + free(name); + } return ECORE_CALLBACK_PASS_ON; }