mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
resolved: fix negative caching of IDNA domains
This commit is contained in:
parent
bdf10b5b4d
commit
7da40fc108
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user