summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/typelib/typelib.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index cf6621707f16..063e0ba8ddb1 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -249,7 +249,7 @@ TypeDescriptor_Init_Impl::~TypeDescriptor_Init_Impl()
TypeDescriptionList_Impl::const_iterator aIt = pCache->begin();
while( aIt != pCache->end() )
{
- typelib_typedescription_release( (*aIt) );
+ typelib_typedescription_release( *aIt );
++aIt;
}
delete pCache;
@@ -1853,7 +1853,7 @@ extern "C" void SAL_CALL typelib_typedescription_getByName(
{
if( *ppRet )
{
- typelib_typedescription_release( (*ppRet) );
+ typelib_typedescription_release( *ppRet );
*ppRet = nullptr;
}