mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 12:21:32 +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 *******************************************************************/
|
||||
|
||||
LIST_ENTRY LdrpUnloadHead;
|
||||
LONG LdrpLoaderLockAcquisitonCount;
|
||||
LONG LdrpLoaderLockAcquisitionCount;
|
||||
BOOLEAN LdrpShowRecursiveLoads, LdrpBreakOnRecursiveDllLoads;
|
||||
UNICODE_STRING LdrApiDefaultExtension = RTL_CONSTANT_STRING(L".DLL");
|
||||
ULONG AlternateResourceModuleCount;
|
||||
|
@ -90,7 +90,7 @@ LdrpMakeCookie(VOID)
|
|||
{
|
||||
/* Generate a cookie */
|
||||
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)
|
||||
{
|
||||
/* Unrecoverable SxS failure; */
|
||||
/* Unrecoverable SxS failure */
|
||||
goto Quickie;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue