diff options
Diffstat (limited to 'bridges/source/jni_uno/nativethreadpool.cxx')
-rw-r--r-- | bridges/source/jni_uno/nativethreadpool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/jni_uno/nativethreadpool.cxx b/bridges/source/jni_uno/nativethreadpool.cxx index a1e623a9cc66..969d91bb4e80 100644 --- a/bridges/source/jni_uno/nativethreadpool.cxx +++ b/bridges/source/jni_uno/nativethreadpool.cxx @@ -27,10 +27,10 @@ ************************************************************************/ +#include <string.h> #include "jvmaccess/virtualmachine.hxx" #include "rtl/byteseq.h" #include "rtl/byteseq.hxx" -#include "rtl/memory.h" #include "rtl/ref.hxx" #include "sal/types.h" #include "uno/threadpool.h" @@ -111,7 +111,7 @@ Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_threadId( if (p == 0) { return 0; } - rtl_copyMemory(p, seq.getConstArray(), n); + memcpy(p, seq.getConstArray(), n); // sal_Int8 and jbyte ought to be compatible env->ReleasePrimitiveArrayCritical(a, p, 0); return a; |