[FFmpeg-devel] [PATCH v1 1/1] return value check for init_get_bits in adts_decode_extradata
Maryam Ebrahimzadeh
me22bee at outlook.com
Wed Aug 4 21:04:58 EEST 2021
Ping.
> On Aug 3, 2021, at 11:58 AM, maryam ebrahimzadeh <me22bee at outlook.com> wrote:
>
> As second argument for init_get_bits (buf) can be crafted, return value check for this function call is necessary.
> 'buf' is part of 'AVPacket pkt'.
>
> ---
> libavformat/adtsenc.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/libavformat/adtsenc.c b/libavformat/adtsenc.c
> index ba15c0a724..b660618432 100644
> --- a/libavformat/adtsenc.c
> +++ b/libavformat/adtsenc.c
> @@ -53,9 +53,11 @@ static int adts_decode_extradata(AVFormatContext *s, ADTSContext *adts, const ui
> GetBitContext gb;
> PutBitContext pb;
> MPEG4AudioConfig m4ac;
> - int off;
> + int off, ret;
>
> - init_get_bits(&gb, buf, size * 8);
> + ret = init_get_bits(&gb, buf, size * 8);
> + if (ret < 0)
> + return ret;
> off = avpriv_mpeg4audio_get_config2(&m4ac, buf, size, 1, s);
> if (off < 0)
> return off;
> --
> 2.17.1
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
More information about the ffmpeg-devel
mailing list