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

This commit is contained in:
Paul Vriens 2007-03-14 18:35:54 +01:00 committed by Alexandre Julliard
parent f1436139fc
commit b4c33d5f99

View File

@ -147,7 +147,7 @@ START_TEST(crypt_md4)
{
HMODULE module;
if (!(module = GetModuleHandleA( "advapi32.dll" ))) return;
module = GetModuleHandleA( "advapi32.dll" );
pMD4Init = (fnMD4Init)GetProcAddress( module, "MD4Init" );
pMD4Update = (fnMD4Update)GetProcAddress( module, "MD4Update" );