forked from FFmpeg/FFmpeg
avformat/rpl: reject invalid sample rate
Fixes overflow check for bit_rate multiplication few lines below. Found by OSS-Fuzz. Signed-off-by: Kacper Michajłow <kasper93@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
dce69ba89e
commit
a3d3a58026
1 changed files with 2 additions and 0 deletions
|
@ -202,6 +202,8 @@ static int rpl_read_header(AVFormatContext *s)
|
|||
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
ast->codecpar->codec_tag = audio_format;
|
||||
ast->codecpar->sample_rate = read_line_and_int(pb, &error); // audio bitrate
|
||||
if (ast->codecpar->sample_rate < 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
channels = read_line_and_int(pb, &error); // number of audio channels
|
||||
error |= read_line(pb, line, sizeof(line));
|
||||
ast->codecpar->bits_per_coded_sample = read_int(line, &endptr, &error); // audio bits per sample
|
||||
|
|
Loading…
Add table
Reference in a new issue