mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
avformat/vividas: Check avio_read() for failure
Fixes: use of uninitialized value (untested)
Fixes: 42537627/clusterfuzz-testcase-minimized-fuzzer_loadfile_direct-5505802505355264
Found-by: ossfuzz
Reported-by: Kacper Michajlow
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 96d45c3b21)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -567,7 +567,8 @@ static int viv_read_header(AVFormatContext *s)
|
||||
v = avio_r8(pb);
|
||||
avio_seek(pb, v, SEEK_CUR);
|
||||
|
||||
avio_read(pb, keybuffer, 187);
|
||||
if (avio_read(pb, keybuffer, 187) != 187)
|
||||
return AVERROR_INVALIDDATA;
|
||||
key = decode_key(keybuffer);
|
||||
viv->sb_key = key;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user