mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[WINLOGON]
Fixed bug of the month. I'm surprised that winlogon worked at all. svn path=/trunk/; revision=47177
This commit is contained in:
@@ -66,7 +66,7 @@ CreateUserEnvironment(IN PWLSESSION Session,
|
||||
}
|
||||
|
||||
/* Allocate enough memory */
|
||||
lpFullEnviron = HeapAlloc(GetProcessHeap, 0, (EnvBlockSize + ProfileSize + 1) * sizeof(WCHAR));
|
||||
lpFullEnviron = HeapAlloc(GetProcessHeap(), 0, (EnvBlockSize + ProfileSize + 1) * sizeof(WCHAR));
|
||||
if (!lpFullEnviron)
|
||||
{
|
||||
TRACE("HeapAlloc() failed\n");
|
||||
|
||||
Reference in New Issue
Block a user