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
d4bbcc44
Commit
d4bbcc44
authored
Jun 07, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf: Set fActive directly in ActivateLanguageProfile() (Coverity).
parent
55e3a03b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
inputprocessor.c
dlls/msctf/inputprocessor.c
+2
-3
msctf.c
dlls/msctf/msctf.c
+0
-1
No files found.
dlls/msctf/inputprocessor.c
View file @
d4bbcc44
...
...
@@ -549,10 +549,9 @@ static HRESULT WINAPI InputProcessorProfiles_ActivateLanguageProfile(
LanguageProfile
.
clsid
=
*
rclsid
;
LanguageProfile
.
langid
=
langid
;
LanguageProfile
.
guidProfile
=
*
guidProfiles
;
LanguageProfile
.
fActive
=
TRUE
;
hr
=
add_active_textservice
(
&
LanguageProfile
);
return
hr
;
return
add_active_textservice
(
&
LanguageProfile
);
}
static
HRESULT
WINAPI
InputProcessorProfiles_GetActiveLanguageProfile
(
...
...
dlls/msctf/msctf.c
View file @
d4bbcc44
...
...
@@ -371,7 +371,6 @@ HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp)
actsvr
->
pITfTextInputProcessor
=
NULL
;
actsvr
->
LanguageProfile
=
*
lp
;
actsvr
->
LanguageProfile
.
fActive
=
TRUE
;
actsvr
->
pITfKeyEventSink
=
NULL
;
/* get TIP category */
...
...
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