mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 14:53:15 -05:00
- Fix trim of EDE text from large udp responses from spinning cpu.
This commit is contained in:
parent
c6746499c1
commit
ccbe31c21f
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
22 February 2024: Wouter
|
||||
- Fix trim of EDE text from large udp responses from spinning cpu.
|
||||
|
||||
20 February 2024: Yorgos
|
||||
- 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
|
||||
|
|
|
|||
|
|
@ -886,6 +886,9 @@ ede_trim_text(struct edns_option** list)
|
|||
curr->opt_len = 2;
|
||||
prev = curr;
|
||||
curr = curr->next;
|
||||
} else {
|
||||
prev = curr;
|
||||
curr = curr->next;
|
||||
}
|
||||
} else {
|
||||
/* continue */
|
||||
|
|
|
|||
Loading…
Reference in a new issue