commit | 573b56b774d61cedaf3a6323a5dfb7993b810a94 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Mon Apr 25 15:42:56 2022 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Apr 28 16:22:40 2022 +0200 |
tree | eb2cb5c9ec7e4105cb571a9a2322aa3706c5da49 | |
parent | 337108ecda4bf43aaed36be9b1d8c02a64f19385 [diff] |
BUG/MINOR: quic: Wrong returned status by qc_build_frms() This function must return a successful status as soon as it could be build a frame to be embedded by a packet. This behavior was broken by the last modifications. This was due to a dangerous "ret = 1" statement inside a loop. This statement must be reach only if we go out of a switch/case after a "break" statement. Add comments to mention this information.