Fixed uninitialized variable.

This commit is contained in:
Armin Novak 2016-10-11 11:20:26 +02:00
parent ae5689709c
commit 99ade05330

View File

@ -299,7 +299,7 @@ BOOL planar_decompress(BITMAP_PLANAR_CONTEXT* planar,
UINT32 subWidth;
UINT32 subHeight;
UINT32 planeSize;
INT32 rleSizes[4];
INT32 rleSizes[4] = { 0, 0, 0, 0 };
UINT32 rawSizes[4];
UINT32 rawWidths[4];
UINT32 rawHeights[4];