From a9a9eae4d9a252b87fb22ee5e50f62dc2a7f65db Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Mon, 16 Mar 2026 14:55:06 +0100 Subject: [PATCH] Fix error propagation in InitSSL QUIC path F-719 --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 7897a294bf..7196f2d828 100644 --- a/src/internal.c +++ b/src/internal.c @@ -8106,7 +8106,7 @@ int InitSSL(WOLFSSL* ssl, WOLFSSL_CTX* ctx, int writeDup) if (ctx->quic.method) { ret = wolfSSL_set_quic_method(ssl, ctx->quic.method); if (ret != WOLFSSL_SUCCESS) - return ret; + return WOLFSSL_FATAL_ERROR; } #endif