Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
26883637
Commit
26883637
authored
Jun 07, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Handle range method failures in InRange (Coverity).
parent
3889dadc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
richole.c
dlls/riched20/richole.c
+5
-4
No files found.
dlls/riched20/richole.c
View file @
26883637
...
...
@@ -2006,10 +2006,11 @@ static HRESULT textrange_inrange(LONG start, LONG end, ITextRange *range, LONG *
if
(
!
ret
)
ret
=
&
v
;
ITextRange_GetStart
(
range
,
&
from
);
ITextRange_GetEnd
(
range
,
&
to
);
*
ret
=
(
start
>=
from
&&
end
<=
to
)
?
tomTrue
:
tomFalse
;
if
(
FAILED
(
ITextRange_GetStart
(
range
,
&
from
))
||
FAILED
(
ITextRange_GetEnd
(
range
,
&
to
)))
{
*
ret
=
tomFalse
;
}
else
*
ret
=
(
start
>=
from
&&
end
<=
to
)
?
tomTrue
:
tomFalse
;
return
*
ret
==
tomTrue
?
S_OK
:
S_FALSE
;
}
...
...
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