- Fix trim of EDE text from large udp responses from spinning cpu.

This commit is contained in:
W.C.A. Wijngaards 2024-02-22 16:22:31 +01:00
parent c6746499c1
commit ccbe31c21f
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,6 @@
22 February 2024: Wouter
- Fix trim of EDE text from large udp responses from spinning cpu.
20 February 2024: Yorgos 20 February 2024: Yorgos
- Merge #1010: Mention REFUSED has the TC bit set with unmatched - Merge #1010: Mention REFUSED has the TC bit set with unmatched
allow_cookie acl in the manpage. It also fixes the code to match the allow_cookie acl in the manpage. It also fixes the code to match the

View file

@ -886,6 +886,9 @@ ede_trim_text(struct edns_option** list)
curr->opt_len = 2; curr->opt_len = 2;
prev = curr; prev = curr;
curr = curr->next; curr = curr->next;
} else {
prev = curr;
curr = curr->next;
} }
} else { } else {
/* continue */ /* continue */