Fix error propagation in InitSSL QUIC path

F-719
This commit is contained in:
Juliusz Sosinowicz
2026-03-16 14:55:06 +01:00
committed by David Garske
parent 3ff051f3e4
commit a9a9eae4d9
+1 -1
View File
@@ -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