Fix after rebase
authorHugo Landau <hlandau@openssl.org>
Wed, 30 Aug 2023 15:48:45 +0000 (16:48 +0100)
committerHugo Landau <hlandau@openssl.org>
Fri, 1 Sep 2023 13:02:54 +0000 (14:02 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21905)

ssl/quic/quic_impl.c

index 7dfe25c916f073ad4799835994c58e70373e12b9..ec18a9f6c8d92bf800f3044a99186b13b432e3bb 100644 (file)
@@ -2817,7 +2817,7 @@ int ossl_quic_is_stream_local(SSL *s)
     QCTX ctx;
     int is_local;
 
-    if (!expect_quic_with_stream_lock(s, /*remote_init=*/-1, &ctx))
+    if (!expect_quic_with_stream_lock(s, /*remote_init=*/-1, /*io=*/0, &ctx))
         return -1;
 
     is_local = ossl_quic_stream_is_local_init(ctx.xso->stream);