From 6300ce1a99d9a9a48f35a1fcd307a2607738796f Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Mon, 26 Sep 2005 09:55:25 +0000 Subject: [PATCH] Calling DdeUninitialize hangs DDE test on XP SP1, so remove that call, and add a comment explaining it. --- dlls/user/tests/dde.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/user/tests/dde.c b/dlls/user/tests/dde.c index deacc78a3aa..94f3cf271f6 100644 --- a/dlls/user/tests/dde.c +++ b/dlls/user/tests/dde.c @@ -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)