mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/dump: Fix integer overflow in av_dump_format()
Fixes part of mozilla bug 1229167
Found-by: Tyson Smith
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 8e7f452022
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
900039e7dc
commit
cf1f615b67
|
@ -493,7 +493,7 @@ void av_dump_format(AVFormatContext *ic, int index,
|
|||
av_log(NULL, AV_LOG_INFO, " Duration: ");
|
||||
if (ic->duration != AV_NOPTS_VALUE) {
|
||||
int hours, mins, secs, us;
|
||||
int64_t duration = ic->duration + 5000;
|
||||
int64_t duration = ic->duration + (ic->duration <= INT64_MAX - 5000 ? 5000 : 0);
|
||||
secs = duration / AV_TIME_BASE;
|
||||
us = duration % AV_TIME_BASE;
|
||||
mins = secs / 60;
|
||||
|
|
Loading…
Reference in New Issue