mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[LSASRV]: Use LsapAllocateHeapZero to initialize the AllocateLsaHeap member of the LSA auth DispatchTable. Should fix login (this means some of the code calling DispatchTable->AllocateLsaHeap expect zero-initialized memory). Addendum to r73330.
CORE-12432 svn path=/trunk/; revision=73331
This commit is contained in:
parent
4fc25ae9f2
commit
ff16e0a2fc
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ LsapInitAuthPackages(VOID)
|
|||
DispatchTable.AddCredential = &LsapAddCredential;
|
||||
DispatchTable.GetCredentials = &LsapGetCredentials;
|
||||
DispatchTable.DeleteCredential = &LsapDeleteCredential;
|
||||
DispatchTable.AllocateLsaHeap = &LsapAllocateHeap;
|
||||
DispatchTable.AllocateLsaHeap = &LsapAllocateHeapZero;
|
||||
DispatchTable.FreeLsaHeap = &LsapFreeHeap;
|
||||
DispatchTable.AllocateClientBuffer = &LsapAllocateClientBuffer;
|
||||
DispatchTable.FreeClientBuffer = &LsapFreeClientBuffer;
|
||||
|
|
Loading…
Reference in a new issue