Skip to content

Commit a9a9eae

Browse files
julek-wolfssldgarske
authored andcommitted
Fix error propagation in InitSSL QUIC path
F-719
1 parent 3ff051f commit a9a9eae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/internal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8106,7 +8106,7 @@ int InitSSL(WOLFSSL* ssl, WOLFSSL_CTX* ctx, int writeDup)
81068106
if (ctx->quic.method) {
81078107
ret = wolfSSL_set_quic_method(ssl, ctx->quic.method);
81088108
if (ret != WOLFSSL_SUCCESS)
8109-
return ret;
8109+
return WOLFSSL_FATAL_ERROR;
81108110
}
81118111
#endif
81128112

0 commit comments

Comments
 (0)