mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user