FsRtlNumberOfRunsInLargeMcb compare http://www.jankratochvil.net/captive source changes of ReactOS ntoskrnl and we found a bug in ReactOS

ntoskrnl.

svn path=/trunk/; revision=21860
This commit is contained in:
Magnus Olsen 2006-05-08 22:07:09 +00:00
parent fac26bda0c
commit ca4a8da1a8

View file

@ -262,7 +262,7 @@ FsRtlNumberOfRunsInLargeMcb(IN PLARGE_MCB Mcb)
{
ULONG NumberOfRuns;
ExAcquireFastMutex (Mcb->FastMutex);
NumberOfRuns=Mcb->BaseMcb.MaximumPairCount;
NumberOfRuns=Mcb->PairCount;
ExReleaseFastMutex (Mcb->FastMutex);
return(NumberOfRuns);
}