mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +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 */
|
/* Allocate enough memory */
|
||||||
lpFullEnviron = HeapAlloc(GetProcessHeap, 0, (EnvBlockSize + ProfileSize + 1) * sizeof(WCHAR));
|
lpFullEnviron = HeapAlloc(GetProcessHeap(), 0, (EnvBlockSize + ProfileSize + 1) * sizeof(WCHAR));
|
||||||
if (!lpFullEnviron)
|
if (!lpFullEnviron)
|
||||||
{
|
{
|
||||||
TRACE("HeapAlloc() failed\n");
|
TRACE("HeapAlloc() failed\n");
|
||||||
|
|
Loading…
Reference in a new issue