mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: quic: Remove a useless variable in quic_update_ack_ranges_list()
This very minor modification is there to ease the readibilyt of this function.
This commit is contained in:
parent
d3f4dd8014
commit
c825eba5f9
1 changed files with 1 additions and 3 deletions
|
|
@ -2348,15 +2348,13 @@ int quic_update_ack_ranges_list(struct quic_arngs *arngs,
|
|||
* which follow it.
|
||||
*/
|
||||
if (new) {
|
||||
uint64_t new_node_last;
|
||||
struct eb64_node *next;
|
||||
struct quic_arng_node *next_node;
|
||||
|
||||
new_node_last = new_node->last;
|
||||
while ((next = eb64_next(new))) {
|
||||
next_node =
|
||||
eb64_entry(&next->node, struct quic_arng_node, first);
|
||||
if (new_node_last + 1 < next_node->first.key)
|
||||
if (new_node->last + 1 < next_node->first.key)
|
||||
break;
|
||||
|
||||
if (next_node->last > new_node->last)
|
||||
|
|
|
|||
Loading…
Reference in a new issue