commit | d5066dd9dd770d95f1ad2ea0f2a806f0a2d9fcfa | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Thu Mar 10 17:06:59 2022 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Mar 11 11:37:31 2022 +0100 |
tree | 6966f1f5a34125f5f2706a57f57172672844d7b9 | |
parent | 530601cd84df069d910830e49ebf4bdecc8e1f8d [diff] |
BUG/MEDIUM: quic: qc_prep_app_pkts() retries on qc_build_pkt() failures The "stop_build" label aim is to try to reuse the TX buffer when there is not enough contiguous room to build a packet. It was defined but not used!
diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 5bf1b2a..9b2e38c 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c
@@ -2527,7 +2527,7 @@ case -2: goto err; case -1: - goto out; + goto stop_build; default: break; }