From 128d1f1d05744e25d2f24690b9ca7c31ac3be102 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 16 Oct 2014 11:39:03 -0400 Subject: [PATCH] cleanup any pending input regions when we delete the client Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 8c32e6a15..c2ab33336 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -734,6 +734,9 @@ _e_comp_wl_client_cb_del(void *data EINA_UNUSED, E_Client *ec) EINA_LIST_FREE(ec->comp_data->pending.damage, dmg) eina_rectangle_free(dmg); + if (ec->comp_data->pending.input) + eina_tiler_free(ec->comp_data->pending.input); + E_FREE(ec->comp_data); }