]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC FIFD: Coverity
authorHugo Landau <hlandau@openssl.org>
Thu, 27 Jul 2023 14:56:54 +0000 (15:56 +0100)
committerHugo Landau <hlandau@openssl.org>
Thu, 10 Aug 2023 17:19:50 +0000 (18:19 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21565)

ssl/quic/quic_fifd.c

index 58f866537711f30f092c11d6f72f658133b4199f..5a69e0e8ff8c045da9f54918a3cd1ad5985352a6 100644 (file)
@@ -77,6 +77,7 @@ static void on_acked(void *arg)
             continue;
 
         if (chunks[i].end >= chunks[i].start)
+            /* coverity[check_return]: Best effort - we cannot fail here. */
             ossl_quic_sstream_mark_acked(sstream,
                                          chunks[i].start, chunks[i].end);