From c26a745444673d6caae958db235323911fbad690 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 8 Oct 2007 04:04:48 -0500 Subject: [PATCH] user32: Set client_pid to zero before initializing dde. --- dlls/user32/tests/dde.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/user32/tests/dde.c b/dlls/user32/tests/dde.c index 0c7adba7732..1dd0cdaecc3 100644 --- a/dlls/user32/tests/dde.c +++ b/dlls/user32/tests/dde.c @@ -507,6 +507,7 @@ static void test_ddeml_client(void) DWORD client_pid; HCONV conversation; + client_pid = 0; ret = DdeInitializeA(&client_pid, client_ddeml_callback, APPCMD_CLIENTONLY, 0); ok(ret == DMLERR_NO_ERROR, "Expected DMLERR_NO_ERROR, got %d\n", ret); -- 2.11.4.GIT