From 94976ddb549167a7b2a314331d384495897926a7 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 5 Jan 2021 22:26:27 +1100 Subject: [PATCH] Fixed comparison warning --- src/libImaging/TiffDecode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libImaging/TiffDecode.c b/src/libImaging/TiffDecode.c index 7f14b5a34..98c3ad77c 100644 --- a/src/libImaging/TiffDecode.c +++ b/src/libImaging/TiffDecode.c @@ -503,8 +503,8 @@ ImagingLibTiffDecode( isYCbCr = photometric == PHOTOMETRIC_YCBCR; if (TIFFIsTiled(tiff)) { - INT32 x, y, tile_y; - UINT32 tile_width, tile_length, current_tile_length, current_line, + INT32 x, y, tile_y, current_tile_length; + UINT32 tile_width, tile_length, current_line, current_tile_width, row_byte_size; UINT8 *new_data;