[WIN32K:NTGDI]

- Correctly pass 'planes' and 'bpp' arguments to IntCreateDIBitmap in GreCreateDIBitmapInternal. CID 1250302

svn path=/trunk/; revision=69642
This commit is contained in:
Thomas Faber 2015-10-22 11:29:55 +00:00
parent 598f3dccc4
commit 1589893f19

View file

@ -1529,7 +1529,7 @@ GreCreateDIBitmapInternal(
planes = 0; planes = 0;
compression = 0; compression = 0;
} }
Bmp = IntCreateDIBitmap(Dc, cx, cy, bpp, planes, compression, fInit, pjInit, pbmi, iUsage); Bmp = IntCreateDIBitmap(Dc, cx, cy, planes, bpp, compression, fInit, pjInit, pbmi, iUsage);
DC_UnlockDc(Dc); DC_UnlockDc(Dc);
if(!hDc) if(!hDc)