summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Hubinette <hubbe@google.com>2017-11-15 17:24:30 -0800
committerMichael Niedermayer <michael@niedermayer.cc>2017-11-16 23:26:36 +0100
commita6fdd75fe6440d2f4150cb456a9078aa68b00fdb (patch)
tree0ac4b88c09d98cff2cefc94e487aa0438935901e
parentac922f942fa2eab80886563bf2fbbb4489b98d89 (diff)
avformat/mov: Check size of STSC allocation
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/mov.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 79023ef369..d49d820d2b 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2595,6 +2595,8 @@ static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
avio_rb24(pb); /* flags */
entries = avio_rb32(pb);
+ if ((uint64_t)entries * 12 + 4 > atom.size)
+ return AVERROR_INVALIDDATA;
av_log(c->fc, AV_LOG_TRACE, "track[%u].stsc.entries = %u\n", c->fc->nb_streams - 1, entries);