summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-10-21 19:45:21 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-10-21 20:06:29 +0200
commitfecb3e82a4ba09dc11a51ad0961ab491881a53a1 (patch)
treec74750c21a27926b4feb5577cc97b205856da1a9
parentc495f4ffde1eb452448dbe5818b33a2989c47bae (diff)
avformat/mxfdec: Check size to avoid integer overflow in mxf_read_utf16_string()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/mxfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index cdb5c4ed11..d2166ee5a1 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -717,7 +717,7 @@ static inline int mxf_read_utf16_string(AVIOContext *pb, int size, char** str, i
int ret;
size_t buf_size;
- if (size < 0)
+ if (size < 0 || size > INT_MAX/2)
return AVERROR(EINVAL);
buf_size = size + size / 2 + 1;