Francois Gouget : kernel32/tests: Don' t use 0xaa to avoid any confusion when running with +heap.
Module: wine Branch: master Commit: 508d58c21012eef9b26d3eeea88da9d8127da49b URL: http://source.winehq.org/git/wine.git/?a=commit;h=508d58c21012eef9b26d3eeea8... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Mar 5 12:04:43 2008 +0100 kernel32/tests: Don't use 0xaa to avoid any confusion when running with +heap. --- dlls/kernel32/tests/process.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c index 43d6ac0..fbf13b0 100644 --- a/dlls/kernel32/tests/process.c +++ b/dlls/kernel32/tests/process.c @@ -1369,7 +1369,7 @@ static void test_OpenProcess(void) hproc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, GetCurrentProcessId()); - memset(&info, 0xaa, sizeof(info)); + memset(&info, 0xcc, sizeof(info)); ok(VirtualQueryEx(hproc, addr1, &info, sizeof(info)) == sizeof(info), "VirtualQueryEx error %d\n", GetLastError());
participants (1)
-
Alexandre Julliard