windowscodecs: Don't check undefined memory in tests on Wine.

oldstable
Vincent Povirk 2014-11-12 15:52:38 -06:00 committed by Alexandre Julliard
parent ffd313543f
commit 8d96b22dd7
1 changed files with 1 additions and 1 deletions

View File

@ -907,7 +907,7 @@ static void test_metadata_png(void)
IWICMetadataReader *reader;
GUID containerformat;
HRESULT hr;
UINT count;
UINT count=0xdeadbeef;
hr = CoCreateInstance(&CLSID_WICPngDecoder, NULL, CLSCTX_INPROC_SERVER,
&IID_IWICBitmapDecoder, (void**)&decoder);