mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-20 22:01:49 -04:00
MINOR: quic: RX packets memory leak
Missing RX packet reference counter decrementation at the lowest level. This leaded the memory reserved for RX packets to never be released.
This commit is contained in:
parent
ebc3fc1509
commit
310d1bd08f
1 changed files with 1 additions and 0 deletions
|
|
@ -4610,6 +4610,7 @@ static ssize_t quic_dgram_read(char *buf, size_t len, void *owner,
|
|||
if (!pkt_len)
|
||||
break;
|
||||
}
|
||||
quic_rx_packet_refdec(pkt);
|
||||
} while (pos < end);
|
||||
|
||||
/* Increasing the received bytes counter by the UDP datagram length
|
||||
|
|
|
|||
Loading…
Reference in a new issue