kernel32: Do not reuse the name of a function argument for a local variable.
This commit is contained in:
parent
aff83e69db
commit
8c6fdf19a9
|
@ -167,8 +167,8 @@ static UTINFO *UTAlloc( HMODULE hModule, HMODULE16 hModule16,
|
|||
|
||||
if ( !UTGlue16_Segptr )
|
||||
{
|
||||
HMODULE16 hModule = GetModuleHandle16( "KERNEL" );
|
||||
UTGlue16_Segptr = GetProcAddress16( hModule, "UTGlue16" );
|
||||
HMODULE16 hMod = GetModuleHandle16( "KERNEL" );
|
||||
UTGlue16_Segptr = GetProcAddress16( hMod, "UTGlue16" );
|
||||
if ( !UTGlue16_Segptr ) return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue