mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Merge commit '1018a92219a38a812cf97761c6b3a5e66a400f4b'
* commit '1018a92219a38a812cf97761c6b3a5e66a400f4b': jpeg2000: Check block length See:914ab4cd1c
See:582f53349e
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e96c80154f
@ -791,8 +791,12 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s,
|
||||
Jpeg2000Cblk *cblk = prec->cblk + cblkno;
|
||||
if ( bytestream2_get_bytes_left(&s->g) < cblk->lengthinc
|
||||
|| sizeof(cblk->data) < cblk->length + cblk->lengthinc + 2
|
||||
)
|
||||
) {
|
||||
av_log(s->avctx, AV_LOG_ERROR,
|
||||
"Block length %d or lengthinc %d is too large\n",
|
||||
cblk->length, cblk->lengthinc);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
bytestream2_get_bufferu(&s->g, cblk->data + cblk->length, cblk->lengthinc);
|
||||
cblk->length += cblk->lengthinc;
|
||||
|
Loading…
Reference in New Issue
Block a user