Calling DdeUninitialize hangs DDE test on XP SP1, so remove that call,

and add a comment explaining it.
This commit is contained in:
Dmitry Timoshkov 2005-09-26 09:55:25 +00:00 committed by Alexandre Julliard
parent c877a2ef53
commit 6300ce1a99
1 changed files with 1 additions and 3 deletions

View File

@ -289,13 +289,11 @@ todo_wine {
ok(DdeFreeStringHandle(dde_inst, hsz_server), "DdeFreeStringHandle error %x\n", DdeGetLastError(dde_inst));
/* This call hangs on win2k SP4.
/* This call hangs on win2k SP4 and XP SP1.
DdeUninitialize(dde_inst);*/
DestroyWindow(hwnd_client);
DestroyWindow(hwnd_server);
DdeUninitialize(dde_inst);
}
static void test_DdeCreateStringHandleW(DWORD dde_inst, int codepage)