initialize the unpackers

This commit is contained in:
Eric Soroos 2020-12-31 14:35:26 +01:00
parent a97e08abd2
commit afb386915d

View File

@ -365,6 +365,8 @@ int ImagingLibTiffDecode(Imaging im, ImagingCodecState state, UINT8* buffer, Py_
UINT8 planes = 1; UINT8 planes = 1;
ImagingShuffler unpackers[4]; ImagingShuffler unpackers[4];
memset(unpackers, 0, sizeof(ImagingShuffler *) * 4);
/* buffer is the encoded file, bytes is the length of the encoded file */ /* 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 */ /* it all ends up in state->buffer, which is a uint8* from Imaging.h */