diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-30 23:03:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-30 23:19:01 +0100 |
commit | 06c143e505779efbc1d0b551b2615f010d5eb6fa (patch) | |
tree | 7e488ddf6a585c249dd3b4cc217e35d682c36ec8 | |
parent | acf1dd5b74ab33a75e5d31ca6281d4cdc2ce2dec (diff) | |
download | ffmpeg-06c143e505779efbc1d0b551b2615f010d5eb6fa.tar.gz |
avformat/mov: Fix integer truncation in mov_read_uuid()
Fixes Ticket6102
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index b1bfa0a35f..9ae4f8c09c 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -4700,7 +4700,7 @@ static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom) { AVStream *st; MOVStreamContext *sc; - int ret; + int64_t ret; uint8_t uuid[16]; static const uint8_t uuid_isml_manifest[] = { 0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd, |