diff options
Diffstat (limited to 'sal/rtl/bootstrap.cxx')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index a802da6a562c..ac735caf713b 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -320,9 +320,9 @@ struct Bootstrap_Impl ~Bootstrap_Impl(); static void * operator new (std::size_t n) - { return rtl_allocateMemory (sal_uInt32(n)); } + { return malloc (sal_uInt32(n)); } static void operator delete (void * p , std::size_t) - { rtl_freeMemory (p); } + { free (p); } bool getValue( rtl::OUString const & key, rtl_uString ** value, |