mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
vmnc: check input size before reading chunk header, fix overread
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b61658829b
commit
39c5cd601e
@ -332,6 +332,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
||||
src += 2;
|
||||
chunks = AV_RB16(src); src += 2;
|
||||
while(chunks--) {
|
||||
if(buf_size - (src - buf) < 12) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Premature end of data!\n");
|
||||
return -1;
|
||||
}
|
||||
dx = AV_RB16(src); src += 2;
|
||||
dy = AV_RB16(src); src += 2;
|
||||
w = AV_RB16(src); src += 2;
|
||||
|
Loading…
Reference in New Issue
Block a user