mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-10 00:59:38 +00:00
avformat/rmdec: rm_read_extradata: add error message for oversized extradata
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 50f9de59a08f4bbacda298377339318e3eb87b8e) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
365e0652f9
commit
aded1110a3
@ -86,8 +86,10 @@ static void get_str8(AVIOContext *pb, char *buf, int buf_size)
|
||||
|
||||
static int rm_read_extradata(AVIOContext *pb, AVCodecContext *avctx, unsigned size)
|
||||
{
|
||||
if (size >= 1<<24)
|
||||
if (size >= 1<<24) {
|
||||
av_log(avctx, AV_LOG_ERROR, "extradata size %u too large\n", size);
|
||||
return -1;
|
||||
}
|
||||
if (ff_get_extradata(avctx, pb, size) < 0)
|
||||
return AVERROR(ENOMEM);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user