kernel32: Do not reuse the name of a function argument for a local variable.

oldstable
Michael Stefaniuc 2007-12-14 00:18:21 +01:00 committed by Alexandre Julliard
parent aff83e69db
commit 8c6fdf19a9
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}