mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
advapi32/tests: No need to check return value of GetModuleHandle.
This commit is contained in:
parent
f1436139fc
commit
b4c33d5f99
@ -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" );
|
||||
|
Loading…
Reference in New Issue
Block a user