Commit b4c33d5f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

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

parent f1436139
......@@ -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" );
......
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