Commit 5faa3d0a authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

crypt32/tests: No need to check return value of GetModuleHandle.

parent b4c33d5f
......@@ -441,8 +441,6 @@ START_TEST(base64)
{
HMODULE lib = GetModuleHandleA("crypt32");
if (lib)
{
pCryptBinaryToStringA = (CryptBinaryToStringAFunc)GetProcAddress(lib,
"CryptBinaryToStringA");
pCryptStringToBinaryA = (CryptStringToBinaryAFunc)GetProcAddress(lib,
......@@ -457,5 +455,4 @@ START_TEST(base64)
testStringToBinaryA();
else
skip("CryptStringToBinaryA is not available\n");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment