[FFmpeg-cvslog] avformat/mov: Fix parsing short loci
Michael Niedermayer
git at videolan.org
Sun May 17 01:09:56 CEST 2015
ffmpeg | branch: release/2.6 | Michael Niedermayer <michaelni at gmx.at> | Sat May 16 13:51:18 2015 +0200| [b58cbb07bca41b1e2a3698a509df1dc8a86bd11d] | committer: Michael Niedermayer
avformat/mov: Fix parsing short loci
Fixes Ticket4557
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 50393bce31a5618f5125aaaf97bb69886fc4261d)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b58cbb07bca41b1e2a3698a509df1dc8a86bd11d
---
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 1e66c24..d130597 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -229,7 +229,7 @@ static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
avio_skip(pb, 1); // role
len -= 1;
- if (len < 14) {
+ if (len < 12) {
av_log(c->fc, AV_LOG_ERROR, "no space for coordinates left (%d)\n", len);
return AVERROR_INVALIDDATA;
}
More information about the ffmpeg-cvslog
mailing list