- Set the page protection for the section header.
authorHartmut Birr <osexpert@googlemail.com>
Sat, 1 Jan 2005 10:57:39 +0000 (10:57 +0000)
committerHartmut Birr <osexpert@googlemail.com>
Sat, 1 Jan 2005 10:57:39 +0000 (10:57 +0000)
svn path=/trunk/; revision=12684

reactos/ntoskrnl/ldr/loader.c

index 8fa49d4..b72720d 100644 (file)
@@ -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;