mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[NTOSKRNL]
Fix NtReleaseMutant, which was expecting MUTANT_QUERY_STATE right on the mutant handle, which is not required, probably a copypasta. Fixes a test. svn path=/trunk/; revision=63300
This commit is contained in:
parent
a1b89faa39
commit
e44bf54b10
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ NtReleaseMutant(IN HANDLE MutantHandle,
|
|||
|
||||
/* Open the Object */
|
||||
Status = ObReferenceObjectByHandle(MutantHandle,
|
||||
MUTANT_QUERY_STATE,
|
||||
0, /* No access rights required */
|
||||
ExMutantObjectType,
|
||||
PreviousMode,
|
||||
(PVOID*)&Mutant,
|
||||
|
|
Loading…
Reference in a new issue