[NTOS] Consistently use MUTANT_INCREMENT.

Spotted by Hermès.
This commit is contained in:
Thomas Faber 2020-10-16 16:09:08 +02:00
parent 83b85e2124
commit 6b3f309a08
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 6 additions and 6 deletions

View file

@ -192,7 +192,7 @@ KeReleaseMutex(IN PKMUTEX Mutex,
ASSERT_MUTANT(Mutex);
/* There's no difference at this level between the two */
return KeReleaseMutant(Mutex, 1, FALSE, Wait);
return KeReleaseMutant(Mutex, MUTANT_INCREMENT, FALSE, Wait);
}
/* EOF */

View file

@ -194,7 +194,7 @@ Cleanup:
//
// Release the lock
//
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
KeLeaveCriticalRegion();
//

View file

@ -991,7 +991,7 @@ MmUnloadSystemImage(IN PVOID ImageHandle)
/* Release the system lock and return */
Done:
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
KeLeaveCriticalRegion();
return STATUS_SUCCESS;
}
@ -1623,7 +1623,7 @@ MiFindInitializationCode(OUT PVOID *StartVa,
/* Release the locks and return */
ExReleaseResourceLite(&PsLoadedModuleResource);
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
KeLeaveCriticalRegion();
}
@ -2972,7 +2972,7 @@ LoaderScan:
else if (!Section)
{
/* It wasn't loaded, and we didn't have a previous attempt */
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
KeLeaveCriticalRegion();
LockOwned = FALSE;
@ -3324,7 +3324,7 @@ Quickie:
if (LockOwned)
{
/* Release the lock */
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
KeLeaveCriticalRegion();
LockOwned = FALSE;
}