parent
712fe9f5b9
commit
c8d613ef49
@ -29,6 +29,7 @@
|
|||||||
*/
|
*/
|
||||||
#include "tiffiop.h"
|
#include "tiffiop.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
static int gtTileContig(TIFFRGBAImage*, uint32*, uint32, uint32);
|
static int gtTileContig(TIFFRGBAImage*, uint32*, uint32, uint32);
|
||||||
static int gtTileSeparate(TIFFRGBAImage*, uint32*, uint32, uint32);
|
static int gtTileSeparate(TIFFRGBAImage*, uint32*, uint32, uint32);
|
||||||
@ -645,12 +646,20 @@ gtTileContig(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|||||||
|
|
||||||
flip = setorientation(img);
|
flip = setorientation(img);
|
||||||
if (flip & FLIP_VERTICALLY) {
|
if (flip & FLIP_VERTICALLY) {
|
||||||
y = h - 1;
|
if ((tw + w) > INT_MAX) {
|
||||||
toskew = -(int32)(tw + w);
|
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", "unsupported tile size (too wide)");
|
||||||
|
return (0);
|
||||||
|
}
|
||||||
|
y = h - 1;
|
||||||
|
toskew = -(int32)(tw + w);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
y = 0;
|
if (tw > (INT_MAX + w)) {
|
||||||
toskew = -(int32)(tw - w);
|
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", "unsupported tile size (too wide)");
|
||||||
|
return (0);
|
||||||
|
}
|
||||||
|
y = 0;
|
||||||
|
toskew = -(int32)(tw - w);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user