remove double pointer

This commit is contained in:
nulano 2021-01-09 22:45:38 +01:00 committed by Eric Soroos
parent 671837840a
commit daf7b6546e

View File

@ -412,7 +412,7 @@ ImagingLibTiffDecode(
UINT8 planes = 1;
ImagingShuffler unpackers[4];
memset(unpackers, 0, sizeof(ImagingShuffler *) * 4);
memset(unpackers, 0, sizeof(ImagingShuffler) * 4);
/* buffer is the encoded file, bytes is the length of the encoded file */
/* it all ends up in state->buffer, which is a uint8* from Imaging.h */