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.2.6~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=224506e7c5bf943a1b6c2292f861797b4249541c;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) (cherry picked from commit caf629215fb516c795a5a916e126d35702edd682) --- diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c index a72ed5666bd..922499f50bd 100644 --- a/ssl/quic/quic_impl.c +++ b/ssl/quic/quic_impl.c @@ -2889,13 +2889,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; }