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

coverity#982157 Unchecked return value

Change-Id: Ia6a1ee154254e7efc0d787ce92222e80fecfd04e
üst 54d06818
...@@ -2281,7 +2281,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_getByName( ...@@ -2281,7 +2281,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_getByName(
{ {
// detruction of this type in progress (another thread!) // detruction of this type in progress (another thread!)
// no acces through this weak reference // no acces through this weak reference
osl_atomic_decrement( &(*aIt).second->nRefCount ); (void)osl_atomic_decrement( &(*aIt).second->nRefCount );
} }
} }
} }
......
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