opj_j2k_update_image_dimensions(): reject images whose coordinates are beyond INT_MAX (fixes #1228)
This commit is contained in:
parent
ac3737372a
commit
024b840739
|
@ -9221,6 +9221,14 @@ static OPJ_BOOL opj_j2k_update_image_dimensions(opj_image_t* p_image,
|
||||||
l_img_comp = p_image->comps;
|
l_img_comp = p_image->comps;
|
||||||
for (it_comp = 0; it_comp < p_image->numcomps; ++it_comp) {
|
for (it_comp = 0; it_comp < p_image->numcomps; ++it_comp) {
|
||||||
OPJ_INT32 l_h, l_w;
|
OPJ_INT32 l_h, l_w;
|
||||||
|
if (p_image->x0 > (OPJ_UINT32)INT_MAX ||
|
||||||
|
p_image->y0 > (OPJ_UINT32)INT_MAX ||
|
||||||
|
p_image->x1 > (OPJ_UINT32)INT_MAX ||
|
||||||
|
p_image->y1 > (OPJ_UINT32)INT_MAX) {
|
||||||
|
opj_event_msg(p_manager, EVT_ERROR,
|
||||||
|
"Image coordinates above INT_MAX are not supported\n");
|
||||||
|
return OPJ_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
l_img_comp->x0 = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)p_image->x0,
|
l_img_comp->x0 = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)p_image->x0,
|
||||||
(OPJ_INT32)l_img_comp->dx);
|
(OPJ_INT32)l_img_comp->dx);
|
||||||
|
|
Loading…
Reference in New Issue