mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Merge pull request #5122 from radarhere/warnings
This commit is contained in:
commit
ce3d80e713
|
@ -3928,7 +3928,7 @@ _set_blocks_max(PyObject* self, PyObject* args)
|
|||
"blocks_max should be greater than 0");
|
||||
return NULL;
|
||||
}
|
||||
else if ( blocks_max > SIZE_MAX/sizeof(ImagingDefaultArena.blocks_pool[0])) {
|
||||
else if ( (unsigned long)blocks_max > SIZE_MAX/sizeof(ImagingDefaultArena.blocks_pool[0])) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
"blocks_max is too large");
|
||||
return NULL;
|
||||
|
|
|
@ -1630,7 +1630,7 @@ allocate(ImagingOutline outline, int extra)
|
|||
/* malloc check ok, uses calloc for overflow */
|
||||
e = calloc(outline->size, sizeof(Edge));
|
||||
} else {
|
||||
if (outline->size > INT_MAX / sizeof(Edge)) {
|
||||
if (outline->size > INT_MAX / (int)sizeof(Edge)) {
|
||||
return NULL;
|
||||
}
|
||||
/* malloc check ok, overflow checked above */
|
||||
|
|
|
@ -742,10 +742,12 @@ j2k_decode_entry(Imaging im, ImagingCodecState state)
|
|||
swapped), bail. */
|
||||
if (tile_info.x0 >= tile_info.x1
|
||||
|| tile_info.y0 >= tile_info.y1
|
||||
|| tile_info.x0 < (OPJ_INT32)image->x0
|
||||
|| tile_info.y0 < (OPJ_INT32)image->y0
|
||||
|| tile_info.x1 - image->x0 > im->xsize
|
||||
|| tile_info.y1 - image->y0 > im->ysize) {
|
||||
|| tile_info.x0 < 0
|
||||
|| tile_info.y0 < 0
|
||||
|| (OPJ_UINT32)tile_info.x0 < image->x0
|
||||
|| (OPJ_UINT32)tile_info.y0 < image->y0
|
||||
|| (OPJ_INT32)(tile_info.x1 - image->x0) > im->xsize
|
||||
|| (OPJ_INT32)(tile_info.y1 - image->y0) > im->ysize) {
|
||||
state->errcode = IMAGING_CODEC_BROKEN;
|
||||
state->state = J2K_STATE_FAILED;
|
||||
goto quick_exit;
|
||||
|
|
|
@ -72,7 +72,7 @@ ImagingRankFilter(Imaging im, int size, int rank)
|
|||
|
||||
/* malloc check ok, for overflow in the define below */
|
||||
if (size > INT_MAX / size ||
|
||||
size > INT_MAX / (size * sizeof(FLOAT32))) {
|
||||
size > INT_MAX / (size * (int)sizeof(FLOAT32))) {
|
||||
return (Imaging) ImagingError_ValueError("filter size too large");
|
||||
}
|
||||
|
||||
|
|
|
@ -208,7 +208,7 @@ precompute_coeffs(int inSize, float in0, float in1, int outSize,
|
|||
ksize = (int) ceil(support) * 2 + 1;
|
||||
|
||||
// check for overflow
|
||||
if (outSize > INT_MAX / (ksize * sizeof(double))) {
|
||||
if (outSize > INT_MAX / (ksize * (int)sizeof(double))) {
|
||||
ImagingError_MemoryError();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user