[FFmpeg-devel] [PATCH 8/9] avcodec/vp8: Forward return of ff_vpx_init_range_decoder()

Ronald S. Bultje rsbultje at gmail.com
Sat May 18 18:07:15 EEST 2024


Hi,

On Fri, May 17, 2024 at 11:59 PM Michael Niedermayer <michael at niedermayer.cc>
wrote:

> Fixes: CID1507483 Unchecked return value
>
> Sponsored-by: Sovereign Tech Fund
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
>  libavcodec/vp8.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
> index 19f32b34006..8e91613068a 100644
> --- a/libavcodec/vp8.c
> +++ b/libavcodec/vp8.c
> @@ -341,9 +341,8 @@ static int setup_partitions(VP8Context *s, const
> uint8_t *buf, int buf_size)
>      }
>
>      s->coeff_partition_size[i] = buf_size;
> -    ff_vpx_init_range_decoder(&s->coeff_partition[i], buf, buf_size);
>
> -    return 0;
> +    return ff_vpx_init_range_decoder(&s->coeff_partition[i], buf,
> buf_size);
>  }
>
>  static void vp7_get_quants(VP8Context *s)
> --
> 2.45.1
>

OK.

Ronald


More information about the ffmpeg-devel mailing list