From ce1f30dac827baed17e1237e671071a05456c6d8 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Tue, 1 Feb 2022 15:14:24 +0100 Subject: [PATCH] MINOR: mux-quic: properly initialize qcc flags Set qcc.flags to 0 on qc_init. --- src/mux_quic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mux_quic.c b/src/mux_quic.c index 52187097d3..bdb15cefa6 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -400,6 +400,7 @@ static int qc_init(struct connection *conn, struct proxy *prx, qcc->conn = conn; conn->ctx = qcc; + qcc->flags = 0; qcc->app_ops = NULL; -- 2.47.2