Skip to content

Commit

Permalink
fix: Fix planar BigTIFF ingestion (DEV-3384)
Browse files Browse the repository at this point in the history
  • Loading branch information
siers committed Sep 23, 2024
1 parent d5eaab3 commit d6f9767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/formats/SipiIOTiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ bool SipiIOTiff::read(SipiImage *img,

if ((region == nullptr) || (region->getType() == SipiRegion::FULL)) {
if (planar == PLANARCONFIG_CONTIG) {
uint32 i;
uint64 i;
auto *dataptr = new uint8[img->ny * sll];

for (i = 0; i < img->ny; i++) {
Expand Down

0 comments on commit d6f9767

Please sign in to comment.