opj_tcd_init_tile(): fix typo on overflow detection condition (introduced in previous commit)

This commit is contained in:
Even Rouault 2017-09-01 16:30:35 +02:00
parent eee5104a88
commit c37e360a51
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ static INLINE OPJ_BOOL opj_tcd_init_tile(opj_tcd_t *p_tcd, OPJ_UINT32 p_tile_no,
OPJ_UINT32 res_h = (OPJ_UINT32)(l_res->y1 - l_res->y0);
/* issue 733, l_data_size == 0U, probably something wrong should be checked before getting here */
if (res_h > 0 && res_h > (((OPJ_UINT32) - 1) / res_h)) {
if (res_h > 0 && res_w > (((OPJ_UINT32) - 1) / res_h)) {
opj_event_msg(manager, EVT_ERROR, "Not enough memory for tile data\n");
return OPJ_FALSE;
}