[FFmpeg-cvslog] avformat/mpegts: Initialize predefined_SLConfigDescriptor_seen
Michael Niedermayer
git at videolan.org
Fri Oct 25 23:47:25 EEST 2024
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Oct 9 23:44:00 2024 +0200| [db7b4fc89fb18d5ff0a1426bd433c234555a3fff] | committer: Michael Niedermayer
avformat/mpegts: Initialize predefined_SLConfigDescriptor_seen
Fixes: use of uninitialized variable
Fixes: 368729566/clusterfuzz-testcase-minimized-ffmpeg_dem_MPEGTS_fuzzer-6044501804646400
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db7b4fc89fb18d5ff0a1426bd433c234555a3fff
---
libavformat/mpegts.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 81481f6f76..78ab7f7efe 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -1672,6 +1672,8 @@ static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
MP4DescrParseContext d;
int ret;
+ d.predefined_SLConfigDescriptor_seen = 0;
+
ret = init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count);
if (ret < 0)
return ret;
More information about the ffmpeg-cvslog
mailing list