[FFmpeg-devel] [PATCH 7/7] avcodec/tests/bitstream_template: Make it clear that the return is intentionally not checked

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Thu May 23 11:22:56 EEST 2024


Michael Niedermayer:
> Helps: CID1518967 Unchecked return value
> Helps: CID1518968 Unchecked return value
> 
> Sponsored-by: Sovereign Tech Fund
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
>  libavcodec/tests/bitstream_template.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/tests/bitstream_template.c b/libavcodec/tests/bitstream_template.c
> index ef59845154d..d8cf980bee1 100644
> --- a/libavcodec/tests/bitstream_template.c
> +++ b/libavcodec/tests/bitstream_template.c
> @@ -74,7 +74,7 @@ int main(int argc, char **argv)
>      for (unsigned i = 0; i < SIZE; i++)
>          buf[i] = av_lfg_get(&lfg);
>  
> -    bits_init8   (&bc, buf, SIZE);
> +    (void)bits_init8   (&bc, buf, SIZE);
>      init_put_bits(&pb, dst, SIZE);
>  
>      /* use a random sequence of bitreading operations to transfer data

Test tools should actually test.

- Andreas



More information about the ffmpeg-devel mailing list