mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
- Fixed LdrLookupPageProtection.
svn path=/trunk/; revision=11111
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: loader.c,v 1.145 2004/09/26 15:07:44 hbirr Exp $
|
||||
/* $Id: loader.c,v 1.146 2004/09/28 20:16:24 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
@@ -666,7 +666,7 @@ LdrLookupPageProtection(PVOID PageStart,
|
||||
ULONG Length;
|
||||
PVOID BaseAddress;
|
||||
|
||||
for (Idx = 0; Idx < PEFileHeader->NumberOfSections && !Write && !Execute; Idx++)
|
||||
for (Idx = 0; Idx < PEFileHeader->NumberOfSections; Idx++)
|
||||
{
|
||||
Characteristics = PESectionHeaders[Idx].Characteristics;
|
||||
if (!(Characteristics & IMAGE_SECTION_NOLOAD))
|
||||
|
||||
Reference in New Issue
Block a user