From 7da40fc10879d122cc6ebfba9609b56212a0ef77 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 1 Aug 2014 00:39:59 +0200 Subject: [PATCH] resolved: fix negative caching of IDNA domains --- src/resolve/resolved-dns-domain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resolve/resolved-dns-domain.c b/src/resolve/resolved-dns-domain.c index 80a2b3cd3..6152047ec 100644 --- a/src/resolve/resolved-dns-domain.c +++ b/src/resolve/resolved-dns-domain.c @@ -324,7 +324,7 @@ unsigned long dns_name_hash_func(const void *s, const uint8_t hash_key[HASH_KEY_ k = dns_label_undo_idna(label, r, label, sizeof(label)); if (k < 0) - return k; + break; if (k > 0) r = k; @@ -436,7 +436,7 @@ int dns_name_endswith(const char *name, const char *suffix) { q = dns_label_unescape(&s, ls, sizeof(ls)); if (r < 0) return r; - w = dns_label_undo_idna(ls, r, ls, sizeof(ls)); + w = dns_label_undo_idna(ls, q, ls, sizeof(ls)); if (w < 0) return w; if (w > 0) -- 2.30.2