summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthieu Darbois <mayeut@users.noreply.github.com>2016-09-08 07:34:46 +0200
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2016-09-13 11:00:08 +0200
commitbf845a3892a6701a3766ea6478abc9cf560362ef (patch)
tree15ef463b7213ad5d9be69064c0d0782ebbc350f6 /src
parentb75acb3bb9e0fdf0f167f0a3331470c0a6e5ff3e (diff)
Cast to size_t before multiplication
Need to cast to size_t before multiplication otherwise overflow check is useless.
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/pi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/pi.c b/src/lib/openjp2/pi.c
index 36e2ff0c..809b33d7 100644
--- a/src/lib/openjp2/pi.c
+++ b/src/lib/openjp2/pi.c
@@ -1241,7 +1241,7 @@ opj_pi_iterator_t *opj_pi_create_decode(opj_image_t *p_image,
l_current_pi->include = 00;
if (l_step_l <= (SIZE_MAX / (l_tcp->numlayers + 1U)))
{
- l_current_pi->include = (OPJ_INT16*) opj_calloc((l_tcp->numlayers +1) * l_step_l, sizeof(OPJ_INT16));
+ l_current_pi->include = (OPJ_INT16*) opj_calloc((size_t)(l_tcp->numlayers + 1U) * l_step_l, sizeof(OPJ_INT16));
}
if