Author: hbelusca Date: Mon Nov 21 14:42:14 2016 New Revision: 73331
URL: http://svn.reactos.org/svn/reactos?rev=73331&view=rev Log: [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
Modified: trunk/reactos/dll/win32/lsasrv/authpackage.c
Modified: trunk/reactos/dll/win32/lsasrv/authpackage.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lsasrv/authpackag... ============================================================================== --- trunk/reactos/dll/win32/lsasrv/authpackage.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/lsasrv/authpackage.c [iso-8859-1] Mon Nov 21 14:42:14 2016 @@ -488,7 +488,7 @@ DispatchTable.AddCredential = &LsapAddCredential; DispatchTable.GetCredentials = &LsapGetCredentials; DispatchTable.DeleteCredential = &LsapDeleteCredential; - DispatchTable.AllocateLsaHeap = &LsapAllocateHeap; + DispatchTable.AllocateLsaHeap = &LsapAllocateHeapZero; DispatchTable.FreeLsaHeap = &LsapFreeHeap; DispatchTable.AllocateClientBuffer = &LsapAllocateClientBuffer; DispatchTable.FreeClientBuffer = &LsapFreeClientBuffer;