Kaydet (Commit) ee8a5820 authored tarafından Caolán McNamara's avatar Caolán McNamara Kaydeden (comit) Fridrich Štrba

coverity#703930 Unchecked return value

Change-Id: Ifa4091eb08774309829ec9016b19e71cf9ea201a
üst 98b67379
......@@ -626,7 +626,7 @@ sal_Int32 OPropertySetAggregationHelper::getOriginalHandle(sal_Int32 nHandle) co
{
OPropertyArrayAggregationHelper& rPH = (OPropertyArrayAggregationHelper&)const_cast<OPropertySetAggregationHelper*>(this)->getInfoHelper();
sal_Int32 nOriginalHandle = -1;
rPH.fillAggregatePropertyInfoByHandle(NULL, &nOriginalHandle, nHandle);
(void)rPH.fillAggregatePropertyInfoByHandle(NULL, &nOriginalHandle, nHandle);
return nOriginalHandle;
}
......
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