diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 15:16:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 15:51:59 +0100 |
commit | 9c2b19c926b65fff2fcbea2b0e970aa499432410 (patch) | |
tree | a18a915836f197587a7cd78cb23fe5d4f1a9cb28 /comphelper | |
parent | 0897a5a8c538d9c7a8949d1f9fbe426523b95533 (diff) |
coverity#703930 Unchecked return value
Change-Id: Ifa4091eb08774309829ec9016b19e71cf9ea201a
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/propagg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx index bee4e70126cc..bf23a413588f 100644 --- a/comphelper/source/property/propagg.cxx +++ b/comphelper/source/property/propagg.cxx @@ -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; } |