diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-08 15:09:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-08 20:45:12 +0100 |
commit | 0fe035e366c9eeb72eaca9ca34ab876fc6154d01 (patch) | |
tree | 0ae75d94b22607d9ac2ea08299dc3ec8dcb1edd9 /cppu/source | |
parent | 54d068185e034323479bcacd544bab222642ad8e (diff) |
coverity#982157 Unchecked return value
Change-Id: Ia6a1ee154254e7efc0d787ce92222e80fecfd04e
Diffstat (limited to 'cppu/source')
-rw-r--r-- | cppu/source/typelib/typelib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index 7fb987b9c9a5..042bf197eaa8 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -2281,7 +2281,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_getByName( { // detruction of this type in progress (another thread!) // no acces through this weak reference - osl_atomic_decrement( &(*aIt).second->nRefCount ); + (void)osl_atomic_decrement( &(*aIt).second->nRefCount ); } } } |