[FFmpeg-cvslog] avformat/mxfdec: Fix overflow in midpoint computation
Michael Niedermayer
git at videolan.org
Fri Oct 25 23:47:23 EEST 2024
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Oct 9 20:47:34 2024 +0200| [23088a5ff2b549fa4fc037bb9ed833fffbc89ca0] | committer: Michael Niedermayer
avformat/mxfdec: Fix overflow in midpoint computation
Fixes: signed integer overflow: 4611686016549392399 + 9223372033098784800 cannot be represented in type 'long long'
Fixes: 368503277/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-5928227458056192
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=23088a5ff2b549fa4fc037bb9ed833fffbc89ca0
---
libavformat/mxfdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 27e8e0c261..9ecaa287bb 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -3896,7 +3896,7 @@ static int mxf_get_next_track_edit_unit(MXFContext *mxf, MXFTrack *track, int64_
a = -1;
b = track->original_duration;
while (b - 1 > a) {
- m = (a + b) >> 1;
+ m = (a + (uint64_t)b) >> 1;
if (mxf_edit_unit_absolute_offset(mxf, t, m, track->edit_rate, NULL, &offset, NULL, 0) < 0)
return -1;
if (offset < current_offset)
More information about the ffmpeg-cvslog
mailing list