From c0b66ca73c0737f836815e24dd1e8602def04b7f Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Mon, 21 Feb 2022 18:45:22 +0100 Subject: [PATCH] MINOR: mux-quic: fix uninitialized return on qc_send This should fix the github issue #1562. --- src/mux_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_quic.c b/src/mux_quic.c index c01fcbfa7..15c8ebc03 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -314,7 +314,7 @@ static int qc_send(struct qcc *qcc) { struct eb64_node *node; int xprt_wake = 0; - int ret; + int ret = 0; fprintf(stderr, "%s\n", __func__);