summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-11 11:37:12 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-11 11:52:33 +0100
commitff43ba7eb6e780a213e50aa7718074f4e1e054c9 (patch)
tree9a879ba92b2b01b822fd1d2a0baa97bb192bfd55 /binaryurp
parent5575146b9ce42fdbab181eb9722d61000dced9c3 (diff)
coverity#707665 Uninitialized scalar field
Change-Id: Ie69b1ee3425d537a930d0ffd0995ad8eed218750
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/writer.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/binaryurp/source/writer.cxx b/binaryurp/source/writer.cxx
index 9dffed604253..6b666b089057 100644
--- a/binaryurp/source/writer.cxx
+++ b/binaryurp/source/writer.cxx
@@ -52,7 +52,8 @@ Writer::Item::Item(
std::vector< BinaryAny > const & inArguments,
css::uno::UnoInterfaceReference const & theCurrentContext):
request(true), tid(theTid), oid(theOid), type(theType), member(theMember),
- arguments(inArguments), currentContext(theCurrentContext)
+ setter(false), arguments(inArguments), exception(false),
+ currentContext(theCurrentContext), setCurrentContextMode(false)
{}
Writer::Item::Item(