From c37e360a5112b5471168e429159f61b74c0c2f58 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 1 Sep 2017 16:30:35 +0200 Subject: [PATCH] opj_tcd_init_tile(): fix typo on overflow detection condition (introduced in previous commit) --- src/lib/openjp2/tcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/openjp2/tcd.c b/src/lib/openjp2/tcd.c index c221c6ed..6758487a 100644 --- a/src/lib/openjp2/tcd.c +++ b/src/lib/openjp2/tcd.c @@ -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; }