mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Set the page protection for the section header.
svn path=/trunk/; revision=12684
This commit is contained in:
parent
095823bec8
commit
f0b1beeb8a
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: loader.c,v 1.152 2004/12/24 17:06:59 navaraf Exp $
|
||||
/* $Id$
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -870,6 +870,7 @@ LdrPEProcessModule(PVOID ModuleLoadBase,
|
|||
return Status;
|
||||
}
|
||||
|
||||
MmSetPageProtect(NULL, DriverBase, PAGE_READONLY);
|
||||
/* Set the protections for the various parts of the driver */
|
||||
for (Idx = 0; Idx < PENtHeaders->FileHeader.NumberOfSections; Idx++)
|
||||
{
|
||||
|
@ -1077,6 +1078,7 @@ LdrSafePEProcessModule(PVOID ModuleLoadBase,
|
|||
}
|
||||
|
||||
/* Set the page protection for the virtual sections */
|
||||
MmSetPageProtect(NULL, DriverBase, PAGE_READONLY);
|
||||
for (Idx = 0; Idx < PENtHeaders->FileHeader.NumberOfSections; Idx++)
|
||||
{
|
||||
ULONG Characteristics = PESectionHeaders[Idx].Characteristics;
|
||||
|
|
Loading…
Reference in a new issue