From 09091bb133456bcf32e74ce17d6b44fe8eea6bd6 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 18 Feb 2017 13:18:09 +0100 Subject: [PATCH] luncher: fix hash table usage ... OKRA! the hash tables wants a pointer to a pointer. Not just a pointer. fix T4970 --- src/modules/luncher/bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index 806c0e493..6e5c9d163 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -206,7 +206,7 @@ _bar_icon_match(Instance *inst, E_Client *ec) if (has_desktop) { ic = eina_hash_find(inst->icons_desktop_hash, ec->exe_inst->desktop->orig_path); - if ((ic) && (ic2 = eina_hash_find(inst->icons_clients_hash, ec))) + if ((ic) && (ic2 = eina_hash_find(inst->icons_clients_hash, &ec))) { ic2->execs = eina_list_remove(ic2->execs, ec->exe_inst); ic2->clients = eina_list_remove(ic2->clients, ec);