mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
avcodec/jpeg2000dec: fix near null pointer dereference
Fixes Ticket2840 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c666c59ac1
commit
63c0e9077e
@ -1343,13 +1343,15 @@ static void jpeg2000_dec_cleanup(Jpeg2000DecoderContext *s)
|
||||
{
|
||||
int tileno, compno;
|
||||
for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++) {
|
||||
for (compno = 0; compno < s->ncomponents; compno++) {
|
||||
Jpeg2000Component *comp = s->tile[tileno].comp + compno;
|
||||
Jpeg2000CodingStyle *codsty = s->tile[tileno].codsty + compno;
|
||||
if (s->tile[tileno].comp) {
|
||||
for (compno = 0; compno < s->ncomponents; compno++) {
|
||||
Jpeg2000Component *comp = s->tile[tileno].comp + compno;
|
||||
Jpeg2000CodingStyle *codsty = s->tile[tileno].codsty + compno;
|
||||
|
||||
ff_jpeg2000_cleanup(comp, codsty);
|
||||
ff_jpeg2000_cleanup(comp, codsty);
|
||||
}
|
||||
av_freep(&s->tile[tileno].comp);
|
||||
}
|
||||
av_freep(&s->tile[tileno].comp);
|
||||
}
|
||||
av_freep(&s->tile);
|
||||
s->numXtiles = s->numYtiles = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user