Skip to content

Commit

Permalink
Merge pull request #1298 from rouault/fix_1297
Browse files Browse the repository at this point in the history
opj_t2_encode_packet(): avoid out of bound access of #1297, but likely not the proper fix
  • Loading branch information
rouault committed Dec 2, 2020
2 parents 18b1138 + 38d661a commit fc6abdb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib/openjp2/t2.c
Expand Up @@ -815,6 +815,15 @@ static OPJ_BOOL opj_t2_encode_packet(OPJ_UINT32 tileno,
continue;
}

/* Avoid out of bounds access of https://github.com/uclouvain/openjpeg/issues/1297 */
/* but likely not a proper fix. */
if (precno >= res->pw * res->ph) {
opj_event_msg(p_manager, EVT_ERROR,
"opj_t2_encode_packet(): accessing precno=%u >= %u\n",
precno, res->pw * res->ph);
return OPJ_FALSE;
}

prc = &band->precincts[precno];
l_nb_blocks = prc->cw * prc->ch;
cblk = prc->cblks.enc;
Expand Down

0 comments on commit fc6abdb

Please sign in to comment.