summaryrefslogtreecommitdiff
path: root/binaryurp/source/proxy.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-31 14:03:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-10-31 14:03:26 +0100
commitf2d8fdabd0fb2799cd2be69ba7ee0fea8e9f4291 (patch)
treebc41e97cb97e0deefa620f2ab751b92662148280 /binaryurp/source/proxy.cxx
parenteb37bbe5995767fc106912cb5f42758ad331e6af (diff)
cid#1212456 Silently ignore uno_assignData return value here
...which must be true for pDestTypeDescr == pSourceTypeDescr. Change-Id: I98b4d654eb0e705ff0b577e7c87971b418ed13fc
Diffstat (limited to 'binaryurp/source/proxy.cxx')
-rw-r--r--binaryurp/source/proxy.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/proxy.cxx b/binaryurp/source/proxy.cxx
index 571ab92a3d65..6ab9e8f1c8ca 100644
--- a/binaryurp/source/proxy.cxx
+++ b/binaryurp/source/proxy.cxx
@@ -206,7 +206,7 @@ void Proxy::do_dispatch_throw(
if (mtd->pParams[j].bOut) {
css::uno::TypeDescription pt(mtd->pParams[j].pTypeRef);
if (mtd->pParams[j].bIn) {
- uno_assignData(
+ (void) uno_assignData(
arguments[j], pt.get(), i++->getValue(pt),
pt.get(), 0, 0, 0);
} else {