Commit 8c6fdf19 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent aff83e69
......@@ -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;
}
......
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