riched20: Handle range method failures in IsEqual (Coverity).
This commit is contained in:
parent
5f933018a2
commit
3889dadcca
|
@ -2048,9 +2048,10 @@ static HRESULT textrange_isequal(LONG start, LONG end, ITextRange *range, LONG *
|
|||
if (!ret)
|
||||
ret = &v;
|
||||
|
||||
ITextRange_GetStart(range, &from);
|
||||
ITextRange_GetEnd(range, &to);
|
||||
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue