From: Tomas Mraz Date: Wed, 24 Sep 2025 11:51:31 +0000 (+0200) Subject: ossl_quic_conn_stream_conclude(): Fixup the quic_unlock() call name X-Git-Tag: openssl-3.4.3~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=caf629215fb516c795a5a916e126d35702edd682;p=thirdparty%2Fopenssl.git ossl_quic_conn_stream_conclude(): Fixup the quic_unlock() call name Reviewed-by: Neil Horman Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/28651) --- diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c index 67549083acc..581b8e52697 100644 --- a/ssl/quic/quic_impl.c +++ b/ssl/quic/quic_impl.c @@ -2940,13 +2940,13 @@ int ossl_quic_conn_stream_conclude(SSL *s) if (!quic_mutation_allowed(ctx.qc, /*req_active=*/1)) { ret = QUIC_RAISE_NON_NORMAL_ERROR(&ctx, SSL_R_PROTOCOL_IS_SHUTDOWN, NULL); - qctx_unlock(ctx.qc); + quic_unlock(ctx.qc); return ret; } if (!quic_validate_for_write(ctx.xso, &err)) { ret = QUIC_RAISE_NON_NORMAL_ERROR(&ctx, err, NULL); - qctx_unlock(ctx.qc); + quic_unlock(ctx.qc); return ret; }