Browse Source

get_qcc: Check compno

Fixes out of array accesses

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
c59ce1c98e
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/jpeg2000dec.c

+ 5
- 0
libavcodec/jpeg2000dec.c View File

@@ -425,6 +425,11 @@ static int get_qcc(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q,
return AVERROR(EINVAL);

compno = bytestream2_get_byteu(&s->g);
if (compno >= s->ncomponents) {
av_log(s->avctx, AV_LOG_ERROR, "Invalid compno\n");
return AVERROR_INVALIDDATA;
}

properties[compno] |= HAD_QCC;
return get_qcx(s, n - 1, q + compno);
}


Loading…
Cancel
Save