diff options
Diffstat (limited to 'cppu')
-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 817601e03d42..ce4757594036 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -2137,7 +2137,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_release( { MutexGuard aGuard( rInit.getMutex() ); WeakMap_Impl::iterator aIt = rInit.pWeakMap->find( pRef->pTypeName->buffer ); - if( !(aIt == rInit.pWeakMap->end()) && (*aIt).second == pRef ) + if( aIt != rInit.pWeakMap->end() && (*aIt).second == pRef ) { // remove only if it contains the same object rInit.pWeakMap->erase( aIt ); |