mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
commit
bb74487e96
|
@ -369,7 +369,7 @@ ImagingNew(const char* mode, int xsize, int ysize)
|
|||
} else
|
||||
bytes = strlen(mode); /* close enough */
|
||||
|
||||
if ((long) xsize * ysize * bytes <= THRESHOLD) {
|
||||
if ((Py_ssize_t) xsize * ysize * bytes <= THRESHOLD) {
|
||||
im = ImagingNewBlock(mode, xsize, ysize);
|
||||
if (im)
|
||||
return im;
|
||||
|
|
Loading…
Reference in New Issue
Block a user