[FFmpeg-cvslog] avformat/mov: Fix potential integer overflow in entry check in mov_read_trun()
Michael Niedermayer
git at videolan.org
Mon Mar 25 16:03:37 EET 2019
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Mar 17 11:14:26 2019 +0100| [ff13a92a6f8413402f5b3cacedda7c10d350b487] | committer: Michael Niedermayer
avformat/mov: Fix potential integer overflow in entry check in mov_read_trun()
No testcase
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff13a92a6f8413402f5b3cacedda7c10d350b487
---
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 9e5670c61a..d5ce077e63 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -4778,7 +4778,7 @@ static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
av_log(c->fc, AV_LOG_TRACE, "first sample flags 0x%x\n", first_sample_flags);
// realloc space for new index entries
- if((unsigned)st->nb_index_entries + entries >= UINT_MAX / sizeof(AVIndexEntry)) {
+ if((uint64_t)st->nb_index_entries + entries >= UINT_MAX / sizeof(AVIndexEntry)) {
entries = UINT_MAX / sizeof(AVIndexEntry) - st->nb_index_entries;
av_log(c->fc, AV_LOG_ERROR, "Failed to add index entry\n");
}
More information about the ffmpeg-cvslog
mailing list