[W32KNAPI_APITEST]

* Fix a memset call. CID 1223160.
CORE-7975

svn path=/trunk/; revision=63988
This commit is contained in:
Amine Khaldi 2014-08-30 12:03:58 +00:00
parent 78f1b595f0
commit d332e8c9c5

View file

@ -417,7 +417,7 @@ printf("dib with bitfileds: %p\n", hbmp);
pbV5h->bV5BlueMask = 0;
pbV5h->bV5AlphaMask = 0;
pbV5h->bV5CSType = 0;
memset(&pbV5h->bV5Endpoints, sizeof(CIEXYZTRIPLE), 0);
memset(&pbV5h->bV5Endpoints, 0, sizeof(CIEXYZTRIPLE));
pbV5h->bV5GammaRed = 0;
pbV5h->bV5GammaGreen = 0;
pbV5h->bV5GammaBlue = 0;