Kaydet (Commit) c5e580ab authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1130164 Unchecked return value

Change-Id: I9d040b0a8862095ff7ac20b07642d60c17e54fce
üst 9bf4b8c5
......@@ -224,8 +224,8 @@ static bool lcl_ChgHyperLinkColor( const SwTxtAttr& rAttr,
rINetAttr.SetVisited(false);
const SwCharFmt* pTmpFmt = rINetAttr.GetCharFmt();
const SfxPoolItem* pItem;
pTmpFmt->GetItemState( RES_CHRATR_COLOR, true, &pItem );
*pColor = ((SvxColorItem*)pItem)->GetValue();
if (SfxItemState::SET == pTmpFmt->GetItemState(RES_CHRATR_COLOR, true, &pItem))
*pColor = ((SvxColorItem*)pItem)->GetValue();
rINetAttr.SetVisited(true);
}
return true;
......
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