[FFmpeg-cvslog] avformat/ilbc: Check avio_read() for failure
Michael Niedermayer
git at videolan.org
Mon Nov 11 02:30:26 EET 2024
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Nov 3 20:47:07 2024 +0100| [e30d957a9bacf7f7307c640aa0bd1e70cb3bbe7e] | committer: Michael Niedermayer
avformat/ilbc: Check avio_read() for failure
Fixes: use of uninitialized value
Fixes: 42537627/clusterfuzz-testcase-minimized-fuzzer_protocol_memory-6656646223298560-cut
Found-by: ossfuzz
Reported-by: Kacper Michajlow
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e30d957a9bacf7f7307c640aa0bd1e70cb3bbe7e
---
libavformat/ilbc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/ilbc.c b/libavformat/ilbc.c
index a24aa3da9d..6c441c21bf 100644
--- a/libavformat/ilbc.c
+++ b/libavformat/ilbc.c
@@ -61,7 +61,8 @@ static int ilbc_read_header(AVFormatContext *s)
AVStream *st;
uint8_t header[9];
- avio_read(pb, header, 9);
+ if (avio_read(pb, header, 9) != 9)
+ return AVERROR_INVALIDDATA;
st = avformat_new_stream(s, NULL);
if (!st)
More information about the ffmpeg-cvslog
mailing list