summaryrefslogtreecommitdiffstats
path: root/javaunohelper/source/bootstrap.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-17 10:38:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-17 10:38:44 +0100
commit6a8a84c72f89930094870df1ed2a65bfe5768a44 (patch)
tree7834237faf3e871f614d8db30fcce3422e93bf62 /javaunohelper/source/bootstrap.cxx
parentDon't assume sal_Unicode is unsigned short (diff)
downloadcore-6a8a84c72f89930094870df1ed2a65bfe5768a44.tar.gz
core-6a8a84c72f89930094870df1ed2a65bfe5768a44.zip
Don't assume sal_Unicode is unsigned short
Change-Id: I083a33e71d1bb9fcef3b287e1db15910779312ab
Diffstat (limited to 'javaunohelper/source/bootstrap.cxx')
-rw-r--r--javaunohelper/source/bootstrap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/source/bootstrap.cxx b/javaunohelper/source/bootstrap.cxx
index ac3b59603604..e245ecc174e6 100644
--- a/javaunohelper/source/bootstrap.cxx
+++ b/javaunohelper/source/bootstrap.cxx
@@ -53,7 +53,7 @@ inline OUString jstring_to_oustring( jstring jstr, JNIEnv * jni_env )
jsize len = jni_env->GetStringLength( jstr );
rtl_uString * ustr =
static_cast<rtl_uString *>(rtl_allocateMemory( sizeof (rtl_uString) + (len * sizeof (sal_Unicode)) ));
- jni_env->GetStringRegion( jstr, 0, len, ustr->buffer );
+ jni_env->GetStringRegion( jstr, 0, len, reinterpret_cast<jchar *>(ustr->buffer) );
OSL_ASSERT( !jni_env->ExceptionCheck() );
ustr->refCount = 1;
ustr->length = len;