summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-28 10:06:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-28 10:06:26 +0200
commitc762354cebd4ab70667d21c4b5613f37795c5dcb (patch)
tree655ade87a5c914e16110d3be6b5210167141d371 /bridges
parent0067b4df75cdbeb325024cd2b66e3d64fe8b3fcd (diff)
Return the std::unique_ptr itself here, not a raw pointer
Change-Id: I786e05bebd243d661ced147ad51e4a843916a3b0
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/jni_uno/jni_data.cxx23
1 files changed, 12 insertions, 11 deletions
diff --git a/bridges/source/jni_uno/jni_data.cxx b/bridges/source/jni_uno/jni_data.cxx
index 3e3ed84b3aa4..af507e608b7a 100644
--- a/bridges/source/jni_uno/jni_data.cxx
+++ b/bridges/source/jni_uno/jni_data.cxx
@@ -31,14 +31,15 @@ namespace jni_uno
{
-inline rtl_mem * seq_allocate( sal_Int32 nElements, sal_Int32 nSize )
+inline std::unique_ptr<rtl_mem> seq_allocate(
+ sal_Int32 nElements, sal_Int32 nSize )
{
std::unique_ptr< rtl_mem > seq(
rtl_mem::allocate( SAL_SEQUENCE_HEADER_SIZE + (nElements * nSize) ) );
uno_Sequence * p = reinterpret_cast<uno_Sequence *>(seq.get());
p->nRefCount = 1;
p->nElements = nElements;
- return seq.release();
+ return seq;
}
@@ -972,21 +973,21 @@ void Bridge::map_to_uno(
switch (element_type->eTypeClass)
{
case typelib_TypeClass_CHAR:
- seq.reset( seq_allocate( nElements, sizeof (sal_Unicode) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Unicode) );
jni->GetCharArrayRegion(
static_cast<jcharArray>(java_data.l), 0, nElements,
reinterpret_cast<jchar *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
jni.ensure_no_exception();
break;
case typelib_TypeClass_BOOLEAN:
- seq.reset( seq_allocate( nElements, sizeof (sal_Bool) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Bool) );
jni->GetBooleanArrayRegion(
static_cast<jbooleanArray>(java_data.l), 0, nElements,
reinterpret_cast<jboolean *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
jni.ensure_no_exception();
break;
case typelib_TypeClass_BYTE:
- seq.reset( seq_allocate( nElements, sizeof (sal_Int8) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Int8) );
jni->GetByteArrayRegion(
static_cast<jbyteArray>(java_data.l), 0, nElements,
reinterpret_cast<jbyte *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
@@ -994,7 +995,7 @@ void Bridge::map_to_uno(
break;
case typelib_TypeClass_SHORT:
case typelib_TypeClass_UNSIGNED_SHORT:
- seq.reset( seq_allocate( nElements, sizeof (sal_Int16) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Int16) );
jni->GetShortArrayRegion(
static_cast<jshortArray>(java_data.l), 0, nElements,
reinterpret_cast<jshort *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
@@ -1002,7 +1003,7 @@ void Bridge::map_to_uno(
break;
case typelib_TypeClass_LONG:
case typelib_TypeClass_UNSIGNED_LONG:
- seq.reset( seq_allocate( nElements, sizeof (sal_Int32) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Int32) );
jni->GetIntArrayRegion(
static_cast<jintArray>(java_data.l), 0, nElements,
reinterpret_cast<jint *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
@@ -1010,21 +1011,21 @@ void Bridge::map_to_uno(
break;
case typelib_TypeClass_HYPER:
case typelib_TypeClass_UNSIGNED_HYPER:
- seq.reset( seq_allocate( nElements, sizeof (sal_Int64) ) );
+ seq = seq_allocate( nElements, sizeof (sal_Int64) );
jni->GetLongArrayRegion(
static_cast<jlongArray>(java_data.l), 0, nElements,
reinterpret_cast<jlong *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
jni.ensure_no_exception();
break;
case typelib_TypeClass_FLOAT:
- seq.reset( seq_allocate( nElements, sizeof (float) ) );
+ seq = seq_allocate( nElements, sizeof (float) );
jni->GetFloatArrayRegion(
static_cast<jfloatArray>(java_data.l), 0, nElements,
reinterpret_cast<jfloat *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
jni.ensure_no_exception();
break;
case typelib_TypeClass_DOUBLE:
- seq.reset( seq_allocate( nElements, sizeof (double) ) );
+ seq = seq_allocate( nElements, sizeof (double) );
jni->GetDoubleArrayRegion(
static_cast<jdoubleArray>(java_data.l), 0, nElements,
reinterpret_cast<jdouble *>(reinterpret_cast<uno_Sequence *>(seq.get())->elements) );
@@ -1040,7 +1041,7 @@ void Bridge::map_to_uno(
case typelib_TypeClass_INTERFACE:
{
TypeDescr element_td( element_type );
- seq.reset( seq_allocate( nElements, element_td.get()->nSize ) );
+ seq = seq_allocate( nElements, element_td.get()->nSize );
JNI_type_info const * element_info;
if (typelib_TypeClass_STRUCT == element_type->eTypeClass ||