commit | c0b66ca73c0737f836815e24dd1e8602def04b7f | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon Feb 21 18:45:22 2022 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon Feb 21 18:46:58 2022 +0100 |
tree | 75239aaa0798374c43f16f75f165e51b212a563f | |
parent | ff191de1ca0102f1e1926ba261fb99d96d304cb7 [diff] |
MINOR: mux-quic: fix uninitialized return on qc_send This should fix the github issue #1562.
diff --git a/src/mux_quic.c b/src/mux_quic.c index c01fcbf..15c8ebc 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c
@@ -314,7 +314,7 @@ { struct eb64_node *node; int xprt_wake = 0; - int ret; + int ret = 0; fprintf(stderr, "%s\n", __func__);