]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: mux-quic: properly initialize qcc flags
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 1 Feb 2022 14:14:24 +0000 (15:14 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 1 Feb 2022 14:19:35 +0000 (15:19 +0100)
Set qcc.flags to 0 on qc_init.

src/mux_quic.c

index 52187097d3293e942ff3c52a51992c398c7a18bb..bdb15cefa6fde2a81d758300ca5e551398fcbcaf 100644 (file)
@@ -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;