diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-09-28 15:42:29 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-09-29 09:27:59 +0200 |
commit | 0af49a63c7f87876486ab09482d5b26b95abce60 (patch) | |
tree | d4a794547fa20303d388edf94c9d484ac59de6f3 /libavformat | |
parent | eeade678f0a2bac127aeed2fb68d8717a6463420 (diff) | |
download | ffmpeg-streaming-0af49a63c7f87876486ab09482d5b26b95abce60.zip ffmpeg-streaming-0af49a63c7f87876486ab09482d5b26b95abce60.tar.gz |
avidec: use actually read size instead of requested size
Fixes CVE-2012-2788
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index b70367f..b2a06ed 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -1116,7 +1116,7 @@ resync: } ast->frame_offset += get_duration(ast, pkt->size); } - ast->remaining -= size; + ast->remaining -= err; if(!ast->remaining){ avi->stream_index= -1; ast->packet_size= 0; |