Author: mturk
Date: Thu Jun 18 10:24:52 2009
New Revision: 786007
URL: http://svn.apache.org/viewvc?rev=786007&view=rev
Log:
Fix typo
Modified:
commons/sandbox/runtime/trunk/src/main/native/os/win32/execmem.c
Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/execmem.c
URL:
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/execmem.c?rev=786007&r1=786006&r2=786007&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/execmem.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/execmem.c Thu Jun 18
10:24:52 2009
@@ -49,9 +49,9 @@
ACR_ThrowException(_E, THROW_NMARK, ACR_EX_EINVAL, 0);
return NULL;
}
- mem = VirtalAlloc(NULL, ass,
- MEM_COMMIT | MEM_RESERVE,
- PAGE_EXECUTE_READWRITE);
+ mem = VirtualAlloc(NULL, ass,
+ MEM_COMMIT | MEM_RESERVE,
+ PAGE_EXECUTE_READWRITE);
if (mem) {
/* Create the Pointer class with default cleanup.
*/