projects
/
haproxy-2.5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ba4276
)
CLEAUNUP: quic: Usage of a useless variable in qc_treat_rx_pkts()
author
Frédéric Lécaille
<flecaille@haproxy.com>
Fri, 4 Jun 2021 08:12:43 +0000
(10:12 +0200)
committer
Amaury Denoyelle
<adenoyelle@haproxy.com>
Thu, 23 Sep 2021 13:27:25 +0000
(15:27 +0200)
The usage of a <drop> variable is unnecessary here.
src/xprt_quic.c
patch
|
blob
|
history
diff --git
a/src/xprt_quic.c
b/src/xprt_quic.c
index
0337558
..
cb00c02
100644
(file)
--- a/
src/xprt_quic.c
+++ b/
src/xprt_quic.c
@@
-2468,13
+2468,7
@@
int qc_treat_rx_pkts(struct quic_enc_level *el, struct quic_conn_ctx *ctx)
QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);
}
else {
- int drop;
-
- drop = 0;
- if (!qc_parse_pkt_frms(pkt, ctx, el))
- drop = 1;
-
- if (drop) {
+ if (!qc_parse_pkt_frms(pkt, ctx, el)) {
/* Drop the packet */
TRACE_PROTO("packet parsing failed -> dropped",
QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);