BUG/MINOR: quic: fix potential use of uninit pointer
Properly initialized the ssl_sock_ctx pointer in qc_conn_init. This is
required to avoid to set an undefined pointer in qc.xprt_ctx if argument
*xprt_ctx is NULL.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index f486eba..f2d549e 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -5026,7 +5026,7 @@
*/
static int qc_conn_init(struct connection *conn, void **xprt_ctx)
{
- struct ssl_sock_ctx *ctx;
+ struct ssl_sock_ctx *ctx = NULL;
struct quic_conn *qc = NULL;
TRACE_ENTER(QUIC_EV_CONN_NEW, conn);