]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
ossl_quic_conn_stream_conclude(): Fixup the quic_unlock() call name
authorTomas Mraz <tomas@openssl.org>
Wed, 24 Sep 2025 11:51:31 +0000 (13:51 +0200)
committerTomas Mraz <tomas@openssl.org>
Wed, 24 Sep 2025 13:10:58 +0000 (15:10 +0200)
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/28651)

(cherry picked from commit caf629215fb516c795a5a916e126d35702edd682)

ssl/quic/quic_impl.c

index 67549083accbe8dd400dbe5c381c3957f48bf065..581b8e526978f0fcd198de4a3ddc13b904a3dd8b 100644 (file)
@@ -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;
     }