mirror of https://git.ffmpeg.org/ffmpeg.git
jpeg2000dec: Check compno in get_coc()
Fixes out of array accesses Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
852f74bd85
commit
e850a064ce
|
@ -354,6 +354,11 @@ static int get_coc(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c,
|
|||
|
||||
compno = bytestream2_get_byteu(&s->g);
|
||||
|
||||
if (compno >= s->ncomponents) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "Invalid compno %d\n", compno);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
c += compno;
|
||||
c->csty = bytestream2_get_byteu(&s->g);
|
||||
|
||||
|
|
Loading…
Reference in New Issue