QUIC: prevented BIO leak in case of error.

This commit is contained in:
Roman Arutyunyan 2024-11-22 11:38:06 +04:00 committed by Roman Arutyunyan
parent 476d6526b2
commit 0864cca4d7

View File

@ -391,6 +391,7 @@ SSL_set_quic_method(SSL *ssl, const SSL_QUIC_METHOD *quic_method)
wbio = BIO_new(BIO_s_null());
if (wbio == NULL) {
BIO_free(rbio);
return 0;
}