OpenVPN / openvpn

OpenVPN is an open source VPN daemon
http://openvpn.net
Other
10.26k stars 2.92k forks source link

Fix send_reliable array index in check_session_buf_not_used() #463

Closed braindead-bf closed 7 months ago

braindead-bf commented 7 months ago

A for loop within check_session_buf_not_used() uses j as an iterator, then checks the send_reliable array at index i. It should check at index j instead.

schwabe commented 7 months ago

There is already a patch pending for the thing you found: https://gerrit.openvpn.net/c/openvpn/+/459

braindead-bf commented 7 months ago

Great, thanks!