Sebastian Lackner : ntdll/tests: Fix flags passed to VirtualFree in exception tests.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 15 09:41:49 CST 2016


Module: wine
Branch: master
Commit: 446067b34df5103fbae12f7d5df8fbe3ef5d30a4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=446067b34df5103fbae12f7d5df8fbe3ef5d30a4

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Sat Feb 13 22:26:05 2016 +0100

ntdll/tests: Fix flags passed to VirtualFree in exception tests.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/tests/exception.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c
index d6a610e..c9e06ea 100644
--- a/dlls/ntdll/tests/exception.c
+++ b/dlls/ntdll/tests/exception.c
@@ -2020,5 +2020,5 @@ START_TEST(exception)
 
 #endif
 
-    VirtualFree(code_mem, 0, MEM_FREE);
+    VirtualFree(code_mem, 0, MEM_RELEASE);
 }




More information about the wine-cvs mailing list