summaryrefslogtreecommitdiff
path: root/cppu/source/uno/sequence.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/source/uno/sequence.cxx')
-rw-r--r--cppu/source/uno/sequence.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppu/source/uno/sequence.cxx b/cppu/source/uno/sequence.cxx
index 513ae613c93a..1a15b1c8a8d6 100644
--- a/cppu/source/uno/sequence.cxx
+++ b/cppu/source/uno/sequence.cxx
@@ -51,11 +51,11 @@ static inline uno_Sequence * reallocSeq(
{
if (pReallocate == nullptr)
{
- pNew = static_cast<uno_Sequence *>(rtl_allocateMemory( nSize ));
+ pNew = static_cast<uno_Sequence *>(std::malloc( nSize ));
}
else
{
- pNew = static_cast<uno_Sequence *>(rtl_reallocateMemory( pReallocate, nSize ));
+ pNew = static_cast<uno_Sequence *>(std::realloc( pReallocate, nSize ));
}
if (pNew != nullptr)
{
@@ -618,7 +618,7 @@ static inline bool ireallocSequence(
pSeq->elements, pElementType,
0, nElements, release );
}
- rtl_freeMemory( pSeq );
+ std::free( pSeq );
}
*ppSequence = pNew;
}
@@ -818,7 +818,7 @@ sal_Bool SAL_CALL uno_type_sequence_reference2One(
{
// easy destruction of empty sequence:
if (osl_atomic_decrement( &pSequence->nRefCount ) == 0)
- rtl_freeMemory( pSequence );
+ std::free( pSequence );
*ppSequence = pNew;
}
}
@@ -861,7 +861,7 @@ sal_Bool SAL_CALL uno_sequence_reference2One(
{
// easy destruction of empty sequence:
if (osl_atomic_decrement( &pSequence->nRefCount ) == 0)
- rtl_freeMemory( pSequence );
+ std::free( pSequence );
*ppSequence = pNew;
}
}