mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[BASESRV]: Fix critical bug in BaseSrvNlsGetUserInfo.
svn path=/trunk/; revision=59895
This commit is contained in:
parent
34ae4aafae
commit
7fc15017b3
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ CSR_API(BaseSrvNlsGetUserInfo)
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Do the copy now, then drop the lock */
|
/* Do the copy now, then drop the lock */
|
||||||
RtlCopyMemory(&NlsMsg->NlsUserInfo, pNlsRegUserInfo, NlsMsg->Size);
|
RtlCopyMemory(NlsMsg->NlsUserInfo, pNlsRegUserInfo, NlsMsg->Size);
|
||||||
DPRINT1("NLS Data copy complete\n");
|
DPRINT1("NLS Data copy complete\n");
|
||||||
RtlLeaveCriticalSection(&NlsCacheCriticalSection);
|
RtlLeaveCriticalSection(&NlsCacheCriticalSection);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue