From d4340cb168748221407f495645739543314fada1 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 7 Aug 2019 16:51:41 +0100 Subject: [PATCH] e wl pixmap - use id not xwin copy & paste failure here. fix. found by asan. @fix --- src/bin/e_pixmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index eb77fc355..1850e5632 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -1129,7 +1129,7 @@ e_pixmap_alias(E_Pixmap *cp, E_Pixmap_Type type, ...) id = va_arg(l, int64_t); if (!aliases[type]) aliases[type] = eina_hash_int64_new(NULL); - cp2 = eina_hash_find(aliases[type], &xwin); + cp2 = eina_hash_find(aliases[type], &id); if ((cp2) && (!cp)) cp2->alias = 0; else if (cp) cp->alias = id; eina_hash_set(aliases[type], &id, cp);