mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +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:
parent
291fb765f3
commit
6899eeb7b6
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue