mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/parseutils: Check sign in av_parse_time()
Fixes: signed integer overflow: -9223372053736 * 1000000 cannot be represented in type 'long'
Fixes: 26910/clusterfuzz-testcase-minimized-ffmpeg_dem_CONCAT_fuzzer-6607924558430208
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 5d7f17e885
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9cd9529377
commit
abb141d6fd
|
@ -736,12 +736,14 @@ int av_parse_time(int64_t *timeval, const char *timestr, int duration)
|
|||
if (*q)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
if (INT64_MAX / suffix < t)
|
||||
if (INT64_MAX / suffix < t || t < INT64_MIN / suffix)
|
||||
return AVERROR(ERANGE);
|
||||
t *= suffix;
|
||||
if (INT64_MAX - microseconds < t)
|
||||
return AVERROR(ERANGE);
|
||||
t += microseconds;
|
||||
if (t == INT64_MIN && negative)
|
||||
return AVERROR(ERANGE);
|
||||
*timeval = negative ? -t : t;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue