mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
Use correct flag while checking for uninitialized segments.
svn path=/trunk/; revision=15559
This commit is contained in:
@@ -861,7 +861,7 @@ MmNotPresentFaultSectionView(PMADDRESS_SPACE AddressSpace,
|
||||
/*
|
||||
* Map anonymous memory for BSS sections
|
||||
*/
|
||||
if (Segment->Characteristics & IMAGE_SCN_LNK_OTHER)
|
||||
if (Segment->Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
|
||||
{
|
||||
MmUnlockSectionSegment(Segment);
|
||||
Status = MmRequestPageMemoryConsumer(MC_USER, FALSE, &Page);
|
||||
|
||||
Reference in New Issue
Block a user