Fix a bug.

svn path=/trunk/; revision=25760
This commit is contained in:
Saveliy Tretiakov 2007-02-10 08:09:04 +00:00
parent 011bca506e
commit 0675bc2424

View file

@ -158,14 +158,9 @@ static BOOL UserLoadKbdDll(WCHAR *wsKLID,
*phModule = EngLoadImage(FullLayoutPath.Buffer);
if(!*phModule)
if(*phModule)
{
DPRINT1( "Failed to load %wZ\n", &FullLayoutPath );
}
else
{
DPRINT( "Loaded Keyboard Layout: %wZ\n", &FullLayoutPath );
}
DPRINT("Loaded %wZ\n", &FullLayoutPath);
RtlInitAnsiString( &kbdProcedureName, "KbdLayerDescriptor" );
LdrGetProcedureAddress((PVOID)*phModule,
@ -188,6 +183,12 @@ static BOOL UserLoadKbdDll(WCHAR *wsKLID,
EngUnloadImage(*phModule);
return FALSE;
}
}
else
{
DPRINT1("Failed to load dll %wZ\n", &FullLayoutPath);
return FALSE;
}
return TRUE;
}