Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
01d167be
Commit
01d167be
authored
Apr 01, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Remove stray semicolon. Don't try to load an invalid file.
parent
ab86a4e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
imm.c
dlls/imm32/imm.c
+2
-3
No files found.
dlls/imm32/imm.c
View file @
01d167be
...
...
@@ -139,8 +139,7 @@ static ImmHkl *IMM_GetImmHkl(HKL hkl)
ptr
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
ImmHkl
));
ptr
->
hkl
=
hkl
;
ImmGetIMEFileNameW
(
hkl
,
filename
,
MAX_PATH
);
ptr
->
hIME
=
LoadLibraryW
(
filename
);
if
(
ImmGetIMEFileNameW
(
hkl
,
filename
,
MAX_PATH
))
ptr
->
hIME
=
LoadLibraryW
(
filename
);
if
(
ptr
->
hIME
)
{
LOAD_FUNCPTR
(
ImeInquire
);
...
...
@@ -179,7 +178,7 @@ static void IMM_FreeAllImmHkl(void)
{
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
);
if
(
ptr
->
hIME
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment