Fix an integer overflow issue

Remove header file limits.h
This commit is contained in:
trylab 2016-08-25 12:01:44 +08:00
parent 7f703c696b
commit a65c9452da
1 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <limits.h>
#include "opj_includes.h"
/** @defgroup PI PI - Implementation of a packet iterator */
@ -1240,7 +1239,7 @@ opj_pi_iterator_t *opj_pi_create_decode(opj_image_t *p_image,
/* memory allocation for include */
/* prevent an integer overflow issue */
l_current_pi->include = 00;
if (l_step_l && l_tcp->numlayers < UINT_MAX / sizeof(OPJ_INT16) / l_step_l - 1)
if (l_step_l && l_tcp->numlayers < ((OPJ_UINT32)-1) / sizeof(OPJ_INT16) / l_step_l - 1)
{
l_current_pi->include = (OPJ_INT16*) opj_calloc((l_tcp->numlayers +1) * l_step_l, sizeof(OPJ_INT16));
}