Re: [FFmpeg-devel] [PATCH] avformat/mov: use 64bit for size in mov_skip_multiple_stsd()

2014-08-21 Thread Christophe Gisquet
2014-08-21 17:43 GMT+02:00 Michael Niedermayer : > static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb, >int codec_tag, int format, > - int size) > + int64_t size) Nice catch, the "s

[FFmpeg-devel] [PATCH] avformat/mov: use 64bit for size in mov_skip_multiple_stsd()

2014-08-21 Thread Michael Niedermayer
Fixes integer overflow Fixes Ticket 3866 Signed-off-by: Michael Niedermayer --- libavformat/mov.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 1255824..b3eb287 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1635,7