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

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2016-02-13 22:26:05 +01:00 committed by Alexandre Julliard
parent 1e624c5aaa
commit 446067b34d
1 changed files with 1 additions and 1 deletions

View File

@ -2020,5 +2020,5 @@ START_TEST(exception)
#endif
VirtualFree(code_mem, 0, MEM_FREE);
VirtualFree(code_mem, 0, MEM_RELEASE);
}