mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 13:18:33 +08:00
- Fixed the searching for uninitialized (like .bss) segments.
svn path=/trunk/; revision=12753
This commit is contained in:
@@ -680,7 +680,7 @@ LdrLookupPageProtection(PVOID PageStart,
|
||||
{
|
||||
Execute = TRUE;
|
||||
}
|
||||
if (Characteristics & (IMAGE_SCN_MEM_WRITE|IMAGE_SCN_LNK_OTHER))
|
||||
if (Characteristics & (IMAGE_SCN_MEM_WRITE|IMAGE_SCN_CNT_UNINITIALIZED_DATA))
|
||||
{
|
||||
Write = TRUE;
|
||||
}
|
||||
@@ -910,7 +910,7 @@ LdrPEProcessModule(PVOID ModuleLoadBase,
|
||||
Protect = PAGE_EXECUTE_READ;
|
||||
}
|
||||
}
|
||||
else if (Characteristics & (IMAGE_SCN_MEM_WRITE|IMAGE_SCN_LNK_OTHER))
|
||||
else if (Characteristics & (IMAGE_SCN_MEM_WRITE|IMAGE_SCN_CNT_UNINITIALIZED_DATA))
|
||||
{
|
||||
Protect = PAGE_READWRITE;
|
||||
}
|
||||
@@ -1115,7 +1115,7 @@ LdrSafePEProcessModule(PVOID ModuleLoadBase,
|
||||
PageAddress = (PVOID)((ULONG_PTR)PageAddress + PAGE_SIZE);
|
||||
}
|
||||
if (DriverBase == ModuleLoadBase &&
|
||||
Characteristics & IMAGE_SCN_LNK_OTHER)
|
||||
Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
|
||||
{
|
||||
/* For ntoskrnl, we must stop after the bss section */
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user