mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 14:34:33 +02:00
quiet a few 'uninitialized' warnings
spurious in this case, but addresses e.g., ... potentially uninitialized local variable 'weighted_average' used Change-Id: Ib99998bf49e4af7a82ee66f13fb850ca5b17dc71
This commit is contained in:
@ -132,7 +132,7 @@ static HRESULT ReadPictureWithWIC(const char* filename,
|
||||
IWICBitmapDecoder* pDecoder = NULL;
|
||||
IStream* pStream = NULL;
|
||||
UINT frameCount = 0;
|
||||
UINT width, height = 0;
|
||||
UINT width = 0, height = 0;
|
||||
BYTE* rgb = NULL;
|
||||
WICPixelFormatGUID srcPixelFormat = { 0 };
|
||||
GUID srcContainerFormat = { 0 };
|
||||
|
Reference in New Issue
Block a user