summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2022-01-10 21:58:50 +0100
committerEven Rouault <even.rouault@spatialys.com>2022-01-10 21:58:50 +0100
commit8e9e8597f528e4cf39ee565d00d953e78c9e48f5 (patch)
tree013b923cf4e09621df641971024e86a2c9319562
parent0620a8f44a09bc672e326b2acbc7c1329604c8da (diff)
downloadlibtiff-git-8e9e8597f528e4cf39ee565d00d953e78c9e48f5.tar.gz
TIFFFillStrip()/TIFFFillStrile(): remove useless test
-rw-r--r--libtiff/tif_read.c30
1 files changed, 12 insertions, 18 deletions
diff --git a/libtiff/tif_read.c b/libtiff/tif_read.c
index 06377d80..66f2e402 100644
--- a/libtiff/tif_read.c
+++ b/libtiff/tif_read.c
@@ -751,15 +751,12 @@ TIFFFillStrip(TIFF* tif, uint32_t strip)
(bytecount - 4096) / 10 > (uint64_t)stripsize )
{
uint64_t newbytecount = (uint64_t)stripsize * 10 + 4096;
- if( newbytecount <= (uint64_t)TIFF_INT64_MAX )
- {
- TIFFErrorExt(tif->tif_clientdata, module,
- "Too large strip byte count %"PRIu64", strip %"PRIu32". Limiting to %"PRIu64,
- bytecount,
- strip,
- newbytecount);
- bytecount = newbytecount;
- }
+ TIFFErrorExt(tif->tif_clientdata, module,
+ "Too large strip byte count %"PRIu64", strip %"PRIu32". Limiting to %"PRIu64,
+ bytecount,
+ strip,
+ newbytecount);
+ bytecount = newbytecount;
}
}
@@ -1145,15 +1142,12 @@ TIFFFillTile(TIFF* tif, uint32_t tile)
(bytecount - 4096) / 10 > (uint64_t)stripsize )
{
uint64_t newbytecount = (uint64_t)stripsize * 10 + 4096;
- if( newbytecount <= (uint64_t)TIFF_INT64_MAX )
- {
- TIFFErrorExt(tif->tif_clientdata, module,
- "Too large tile byte count %"PRIu64", tile %"PRIu32". Limiting to %"PRIu64,
- bytecount,
- tile,
- newbytecount);
- bytecount = newbytecount;
- }
+ TIFFErrorExt(tif->tif_clientdata, module,
+ "Too large tile byte count %"PRIu64", tile %"PRIu32". Limiting to %"PRIu64,
+ bytecount,
+ tile,
+ newbytecount);
+ bytecount = newbytecount;
}
}