[ros-diffs] [greatlrd] 21864: correct the ntoskrnl to the new LARGE_MCB strucrt

greatlrd at svn.reactos.org greatlrd at svn.reactos.org
Tue May 9 08:02:27 CEST 2006


Author: greatlrd
Date: Tue May  9 10:02:26 2006
New Revision: 21864

URL: http://svn.reactos.ru/svn/reactos?rev=21864&view=rev
Log:
correct the ntoskrnl to the new LARGE_MCB strucrt

Modified:
    trunk/reactos/ntoskrnl/fs/mcb.c

Modified: trunk/reactos/ntoskrnl/fs/mcb.c
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/ntoskrnl/fs/mcb.c?rev=21864&r1=21863&r2=21864&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/fs/mcb.c (original)
+++ trunk/reactos/ntoskrnl/fs/mcb.c Tue May  9 10:02:26 2006
@@ -106,7 +106,7 @@
 			IN POOL_TYPE PoolType)
 {
   UNIMPLEMENTED;
-  Mcb->BaseMcb.PoolType = PoolType;
+  Mcb->PoolType = PoolType;
 }
 
 /*
@@ -262,7 +262,7 @@
 {
   ULONG NumberOfRuns;
   ExAcquireFastMutex (Mcb->FastMutex);
-  NumberOfRuns = Mcb->BaseMcb.PairCount;
+  NumberOfRuns = Mcb->PairCount;
   ExReleaseFastMutex (Mcb->FastMutex);
   return(NumberOfRuns);
 }




More information about the Ros-diffs mailing list