[FFmpeg-devel] [PATCH 1/9] avformat/rmdec: check that bug if completely filled
Michael Niedermayer
michael at niedermayer.cc
Sat Aug 17 02:11:49 EEST 2024
Fixes: use of uninitialized value
Fixes: 70988/clusterfuzz-testcase-minimized-ffmpeg_dem_IVR_fuzzer-5298245077630976
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavformat/rmdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index 25a8681cfd3..4b21105d3dd 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -188,7 +188,8 @@ static int rm_read_audio_stream_info(AVFormatContext *s, AVIOContext *pb,
st->codecpar->ch_layout.nb_channels = avio_rb16(pb);
if (version == 5) {
ast->deint_id = avio_rl32(pb);
- avio_read(pb, buf, 4);
+ if (avio_read(pb, buf, 4) != 4)
+ return AVERROR_INVALIDDATA;
buf[4] = 0;
} else {
AV_WL32(buf, 0);
--
2.46.0
More information about the ffmpeg-devel
mailing list