Author: tfaber
Date: Tue Aug 9 22:37:53 2011
New Revision: 53157
URL:
http://svn.reactos.org/svn/reactos?rev=53157&view=rev
Log:
[NTDLL_WINETEST]
- Fix MSVC build
Modified:
trunk/rostests/winetests/ntdll/exception.c
Modified: trunk/rostests/winetests/ntdll/exception.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ntdll/exception…
==============================================================================
--- trunk/rostests/winetests/ntdll/exception.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/ntdll/exception.c [iso-8859-1] Tue Aug 9 22:37:53 2011
@@ -1390,13 +1390,12 @@
START_TEST(exception)
{
+ HMODULE hntdll = GetModuleHandleA("ntdll.dll");
if(!winetest_interactive) {
skip("ReactOS Bug 6404: ntdll_winetest:exception enters kdbg on the int3
exception test.\n");
return;
}
-
- HMODULE hntdll = GetModuleHandleA("ntdll.dll");
code_mem = VirtualAlloc(NULL, 65536, MEM_RESERVE | MEM_COMMIT,
PAGE_EXECUTE_READWRITE);
if(!code_mem) {