mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
[NTOS]: Erm, why is it that the ARM compiler detects this obvious bug, but x86 does not? Fix missing ShareCount zeroing when unlocking an MDL.
svn path=/trunk/; revision=49770
This commit is contained in:
@@ -271,7 +271,7 @@ MmFreePagesFromMdl(IN PMDL Mdl)
|
||||
//
|
||||
Pfn1->u3.e1.StartOfAllocation = 0;
|
||||
Pfn1->u3.e1.EndOfAllocation = 0;
|
||||
Pfn1->u2.ShareCount == 0;
|
||||
Pfn1->u2.ShareCount = 0;
|
||||
|
||||
//
|
||||
// Dereference it
|
||||
|
||||
Reference in New Issue
Block a user