okra pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f5f9bd53382b01fafc70488d90a5d98d81aaa829
commit f5f9bd53382b01fafc70488d90a5d98d81aaa829 Author: Stephen 'Okra' Houston <smhousto...@gmail.com> Date: Tue Dec 13 13:39:39 2016 -0600 Luncher: Fix leaking caused by luncher. --- src/modules/luncher/bar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index 69d4391..32c7d62 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -927,6 +927,7 @@ _bar_icon_add(Instance *inst, Efreet_Desktop *desktop, E_Client *non_desktop_cli if (inst->cfg->style) msg->str = strdup(inst->cfg->style); edje_object_message_send(elm_layout_edje_get(ic->o_layout), EDJE_MESSAGE_STRING, 1, msg); + free(msg->str); ic->o_icon = elm_icon_add(ic->o_layout); E_EXPAND(ic->o_icon); @@ -1391,6 +1392,7 @@ _bar_fill(Instance *inst) } } } + eina_iterator_free(it); E_CLIENT_FOREACH(ec) { if (e_client_util_ignored_get(ec)) continue; --