From e9bb005dfb2806368e2e7b7c437d3c88e733a86c Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Thu, 20 Jan 2005 01:19:52 +0000 Subject: [PATCH] fixed ProbeForWrite() for optimized builds svn path=/trunk/; revision=13149 --- reactos/ntoskrnl/mm/virtual.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/reactos/ntoskrnl/mm/virtual.c b/reactos/ntoskrnl/mm/virtual.c index 211fd11761c..6321380c4b9 100644 --- a/reactos/ntoskrnl/mm/virtual.c +++ b/reactos/ntoskrnl/mm/virtual.c @@ -820,8 +820,7 @@ ProbeForWrite (IN CONST VOID *Address, IN ULONG Length, IN ULONG Alignment) { - PULONG Ptr; - ULONG x; + volatile PCHAR Ptr; ULONG i; ASSERT(Alignment ==1 || Alignment == 2 || Alignment == 4 || Alignment == 8); @@ -842,9 +841,8 @@ ProbeForWrite (IN CONST VOID *Address, /* Check for accessible pages */ for (i = 0; i < Length; i += PAGE_SIZE) { - Ptr = (PULONG)(((ULONG_PTR)Address & ~(PAGE_SIZE - 1)) + i); - x = *Ptr; - *Ptr = x; + Ptr = (PCHAR)(((ULONG_PTR)Address & ~(PAGE_SIZE - 1)) + i); + *Ptr = *Ptr; } }