summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/unmarshal.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/unmarshal.cxx b/binaryurp/source/unmarshal.cxx
index 3ea3d2058553..41145ccffca5 100644
--- a/binaryurp/source/unmarshal.cxx
+++ b/binaryurp/source/unmarshal.cxx
@@ -55,7 +55,7 @@ namespace binaryurp {
namespace {
void * allocate(sal_Size size) {
- void * p = rtl_allocateMemory(size);
+ void * p = std::malloc(size);
if (p == nullptr) {
throw std::bad_alloc();
}
tion'>Armin Le Grand 2016-02-09Remove excess newlinesChris Sherlock 2016-01-10Fix typosAndrea Gelmini 2015-12-15use vector as container for Primitive3DReferenceNoel Grandin 2015-12-11tdf#69977: uno::Sequence is expensiveNoel Grandin 2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann 2015-09-14boost->stdCaolán McNamara 2015-07-15loplugin:unusedmethods drawinglayerNoel Grandin 2015-01-26new loplugin: change virtual methods to non-virtualNoel Grandin