[FFmpeg-cvslog] avformat/mpegts: Initialize predefined_SLConfigDescriptor_seen
Michael Niedermayer
git at videolan.org
Thu Feb 27 19:07:57 EET 2025
ffmpeg | branch: release/4.3 | Michael Niedermayer <michael at niedermayer.cc> | Wed Oct 9 23:44:00 2024 +0200| [b612d3634c514c4d70fe84c262b38be8a8374d4e] | 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>
(cherry picked from commit db7b4fc89fb18d5ff0a1426bd433c234555a3fff)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b612d3634c514c4d70fe84c262b38be8a8374d4e
---
libavformat/mpegts.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 7b1be3b5e2..0093db70f1 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -1639,6 +1639,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