From c4b1523b90cc2be7fb5ef3c8c84348d6aaf83cc1 Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 16 Feb 2011 17:50:14 -0800 Subject: [PATCH] crypt32/tests: Remove a dead initialization (LLVM/Clang). --- dlls/crypt32/tests/protectdata.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/crypt32/tests/protectdata.c b/dlls/crypt32/tests/protectdata.c index 29d04e81aa6..70a8ba86b05 100644 --- a/dlls/crypt32/tests/protectdata.c +++ b/dlls/crypt32/tests/protectdata.c @@ -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)