diff options
author | Matt Wolenetz <wolenetz@google.com> | 2016-12-14 15:24:42 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-02-08 21:17:51 +0100 |
commit | 8be3724e55b2c55337c14c9cb7a69c5a85d42a65 (patch) | |
tree | 31d5fa28e9e47b6a0c453aafdbd9b76533cb9e94 | |
parent | 142c1737e325d324c46d9450dbce711720e84430 (diff) | |
download | ffmpeg-8be3724e55b2c55337c14c9cb7a69c5a85d42a65.tar.gz |
lavf/mov.c: Avoid heap allocation wrap in mov_read_hdlr
Core of patch is from paul@paulmehta.com
Reference https://crbug.com/643950
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Check value reduced as the code does not support larger lengths
(cherry picked from commit fd30e4d57fe5841385f845440688505b88c0f4a9)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index aa6208759b..44909e3495 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -635,6 +635,8 @@ static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom) title_size = atom.size - 24; if (title_size > 0) { + if (title_size > FFMIN(INT_MAX, SIZE_MAX-1)) + return AVERROR_INVALIDDATA; title_str = av_malloc(title_size + 1); /* Add null terminator */ if (!title_str) return AVERROR(ENOMEM); |