From 922414b60a46012a31fee64d7e4e12be35d66992 Mon Sep 17 00:00:00 2001 From: Reece Dunn Date: Wed, 30 Jul 2008 21:50:46 +0100 Subject: [PATCH] secur32: Fix the schannel tests crashing on Vista. --- dlls/secur32/tests/schannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c index b4eaf124193..904b6fd6882 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -245,7 +245,7 @@ static void testAcquireSecurityContext(void) pFreeCredentialsHandle(&cred); /* but fails for inbound. */ st = pAcquireCredentialsHandleA(NULL, unisp_name_a, SECPKG_CRED_INBOUND, - NULL, &schanCred, NULL, NULL, NULL, NULL); + NULL, &schanCred, NULL, NULL, &cred, NULL); ok(st == SEC_E_NO_CREDENTIALS, "Expected SEC_E_NO_CREDENTIALS, got %08x\n", st);