Revert r56462. Should fix some win32k crashes. See CORE-7965

svn path=/trunk/; revision=63339
This commit is contained in:
Timo Kreuzer 2014-05-17 22:33:42 +00:00
parent 5e5f4c1d14
commit 1a918ac33b

View file

@ -142,7 +142,7 @@ NtGdiCreateBitmap(
IN OPTIONAL LPBYTE pUnsafeBits)
{
HBITMAP hbmp;
ULONG cRealBpp, cjWidthBytes, iFormat, fjBitmap;
ULONG cRealBpp, cjWidthBytes, iFormat;
ULONGLONG cjSize;
PSURFACE psurf;
@ -164,15 +164,12 @@ NtGdiCreateBitmap(
return NULL;
}
/* Allocations larger than PAGE_SIZE go into user mem */
fjBitmap = (cjSize > PAGE_SIZE) ? BMF_USERMEM : 0;
/* Allocate the surface (but don't set the bits) */
psurf = SURFACE_AllocSurface(STYPE_BITMAP,
nWidth,
nHeight,
iFormat,
fjBitmap,
0,
0,
NULL);
if (!psurf)