mirror of
https://github.com/reactos/reactos.git
synced 2025-07-05 08:21:23 +00:00
[NTDLL]: Fix misspelling.
svn path=/trunk/; revision=72660
This commit is contained in:
parent
6dd9ac5dc5
commit
4fa77bfbc3
1 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@
|
||||||
/* GLOBALS *******************************************************************/
|
/* GLOBALS *******************************************************************/
|
||||||
|
|
||||||
LIST_ENTRY LdrpUnloadHead;
|
LIST_ENTRY LdrpUnloadHead;
|
||||||
LONG LdrpLoaderLockAcquisitonCount;
|
LONG LdrpLoaderLockAcquisitionCount;
|
||||||
BOOLEAN LdrpShowRecursiveLoads, LdrpBreakOnRecursiveDllLoads;
|
BOOLEAN LdrpShowRecursiveLoads, LdrpBreakOnRecursiveDllLoads;
|
||||||
UNICODE_STRING LdrApiDefaultExtension = RTL_CONSTANT_STRING(L".DLL");
|
UNICODE_STRING LdrApiDefaultExtension = RTL_CONSTANT_STRING(L".DLL");
|
||||||
ULONG AlternateResourceModuleCount;
|
ULONG AlternateResourceModuleCount;
|
||||||
|
@ -90,7 +90,7 @@ LdrpMakeCookie(VOID)
|
||||||
{
|
{
|
||||||
/* Generate a cookie */
|
/* Generate a cookie */
|
||||||
return (((ULONG_PTR)NtCurrentTeb()->RealClientId.UniqueThread & 0xFFF) << 16) |
|
return (((ULONG_PTR)NtCurrentTeb()->RealClientId.UniqueThread & 0xFFF) << 16) |
|
||||||
(_InterlockedIncrement(&LdrpLoaderLockAcquisitonCount) & 0xFFFF);
|
(_InterlockedIncrement(&LdrpLoaderLockAcquisitionCount) & 0xFFFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -580,7 +580,7 @@ LdrGetDllHandleEx(IN ULONG Flags,
|
||||||
}
|
}
|
||||||
else if (Status != STATUS_SXS_KEY_NOT_FOUND)
|
else if (Status != STATUS_SXS_KEY_NOT_FOUND)
|
||||||
{
|
{
|
||||||
/* Unrecoverable SxS failure; */
|
/* Unrecoverable SxS failure */
|
||||||
goto Quickie;
|
goto Quickie;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue