crypt32/tests: Remove a dead initialization (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-16 17:50:14 -08:00 committed by Alexandre Julliard
parent 6d66446baf
commit c4b1523b90
1 changed files with 0 additions and 1 deletions

View File

@ -244,7 +244,6 @@ static void test_simpleroundtrip(const char *plaintext)
START_TEST(protectdata)
{
HMODULE hCrypt32 = GetModuleHandleA("crypt32.dll");
hCrypt32 = GetModuleHandleA("crypt32.dll");
pCryptProtectData = (void*)GetProcAddress(hCrypt32, "CryptProtectData");
pCryptUnprotectData = (void*)GetProcAddress(hCrypt32, "CryptUnprotectData");
if (!pCryptProtectData || !pCryptUnprotectData)