]> git.sesse.net Git - ffmpeg/commitdiff
avformat/microdvddec: use 64bit for durations
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 11 Dec 2020 00:06:46 +0000 (01:06 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 21 Feb 2021 21:50:52 +0000 (22:50 +0100)
Fixes: signed integer overflow: 7 - -2147483647 cannot be represented in type 'int'
Fixes: 28036/clusterfuzz-testcase-minimized-ffmpeg_dem_MICRODVD_fuzzer-5171698751766528
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/microdvddec.c

index 1f871b251829ab782c377d04cafe59f21c4384fc..ecebff101c010a383e739bc5fb5078dcf5d20235 100644 (file)
@@ -65,12 +65,12 @@ static int64_t get_pts(const char *buf)
     return AV_NOPTS_VALUE;
 }
 
-static int get_duration(const char *buf)
+static int64_t get_duration(const char *buf)
 {
     int frame_start, frame_end;
 
     if (sscanf(buf, "{%d}{%d}", &frame_start, &frame_end) == 2)
-        return frame_end - frame_start;
+        return frame_end - (int64_t)frame_start;
     return -1;
 }