Commit 01d167be authored by Alexandre Julliard's avatar Alexandre Julliard

imm32: Remove stray semicolon. Don't try to load an invalid file.

parent ab86a4e9
...@@ -139,8 +139,7 @@ static ImmHkl *IMM_GetImmHkl(HKL hkl) ...@@ -139,8 +139,7 @@ static ImmHkl *IMM_GetImmHkl(HKL hkl)
ptr = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(ImmHkl)); ptr = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(ImmHkl));
ptr->hkl = hkl; ptr->hkl = hkl;
ImmGetIMEFileNameW(hkl, filename, MAX_PATH); if (ImmGetIMEFileNameW(hkl, filename, MAX_PATH)) ptr->hIME = LoadLibraryW(filename);
ptr->hIME = LoadLibraryW(filename);
if (ptr->hIME) if (ptr->hIME)
{ {
LOAD_FUNCPTR(ImeInquire); LOAD_FUNCPTR(ImeInquire);
...@@ -179,7 +178,7 @@ static void IMM_FreeAllImmHkl(void) ...@@ -179,7 +178,7 @@ static void IMM_FreeAllImmHkl(void)
{ {
ImmHkl *ptr,*cursor2; ImmHkl *ptr,*cursor2;
LIST_FOR_EACH_ENTRY_SAFE(ptr, cursor2, &ImmHklList, ImmHkl, entry); LIST_FOR_EACH_ENTRY_SAFE(ptr, cursor2, &ImmHklList, ImmHkl, entry)
{ {
list_remove(&ptr->entry); list_remove(&ptr->entry);
if (ptr->hIME) if (ptr->hIME)
......
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