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

This commit is contained in:
Paul Vriens 2007-03-14 18:36:00 +01:00 committed by Alexandre Julliard
parent b4c33d5f99
commit 5faa3d0a59

View File

@ -441,8 +441,6 @@ START_TEST(base64)
{
HMODULE lib = GetModuleHandleA("crypt32");
if (lib)
{
pCryptBinaryToStringA = (CryptBinaryToStringAFunc)GetProcAddress(lib,
"CryptBinaryToStringA");
pCryptStringToBinaryA = (CryptStringToBinaryAFunc)GetProcAddress(lib,
@ -458,4 +456,3 @@ START_TEST(base64)
else
skip("CryptStringToBinaryA is not available\n");
}
}