From 0fe035e366c9eeb72eaca9ca34ab876fc6154d01 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 8 Oct 2014 15:09:15 +0100 Subject: coverity#982157 Unchecked return value Change-Id: Ia6a1ee154254e7efc0d787ce92222e80fecfd04e --- cppu/source/typelib/typelib.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } } } -- cgit