From 8537c46c93e87cdb82e2692513317e92573fc08d Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Tue, 18 Dec 2007 23:58:02 +0100 Subject: [PATCH] secur32/tests: InitFunctionPtrs() needs to use the global crypt32dll variable. --- 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 3d3eb7fbdcf..dec93689073 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -106,8 +106,8 @@ static const BYTE selfSignedCert[] = { static void InitFunctionPtrs(void) { HMODULE advapi32dll = GetModuleHandleA("advapi32.dll"); - HMODULE crypt32dll = LoadLibraryA("crypt32.dll"); + crypt32dll = LoadLibraryA("crypt32.dll"); secdll = LoadLibraryA("secur32.dll"); if(!secdll) secdll = LoadLibraryA("security.dll");