[Libreoffice-commits] core.git: binaryurp/source
Stephan Bergmann
sbergman at redhat.com
Fri Oct 31 06:03:59 PDT 2014
binaryurp/source/proxy.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f2d8fdabd0fb2799cd2be69ba7ee0fea8e9f4291
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Oct 31 14:03:00 2014 +0100
cid#1212456 Silently ignore uno_assignData return value here
...which must be true for pDestTypeDescr == pSourceTypeDescr.
Change-Id: I98b4d654eb0e705ff0b577e7c87971b418ed13fc
diff --git a/binaryurp/source/proxy.cxx b/binaryurp/source/proxy.cxx
index 571ab92..6ab9e8f 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 {
More information about the Libreoffice-commits
mailing list