summaryrefslogtreecommitdiffstats
path: root/sal/rtl/source/unload.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/source/unload.cxx')
-rw-r--r--sal/rtl/source/unload.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sal/rtl/source/unload.cxx b/sal/rtl/source/unload.cxx
index 9d30bb303c26..5e9cdf1e0482 100644
--- a/sal/rtl/source/unload.cxx
+++ b/sal/rtl/source/unload.cxx
@@ -26,6 +26,8 @@
*
************************************************************************/
+#include <string.h>
+
#include <rtl/unload.h>
#include <rtl/alloc.h>
#include <rtl/ustring.hxx>
@@ -203,7 +205,7 @@ extern "C" sal_Bool rtl_moduleCount_canUnload( rtl_StandardModuleCount * that, T
MutexGuard guard( getUnloadingMutex());
if (libUnused && (that->counter == 0))
{
- rtl_copyMemory(libUnused, &that->unusedSince, sizeof(TimeValue));
+ memcpy(libUnused, &that->unusedSince, sizeof(TimeValue));
}
}
return (that->counter == 0);