summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-21 15:08:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-21 17:05:31 +0000
commit827dda8c67f24366cc1f499b4bbb73c2c8e6a4e2 (patch)
tree99d99e5b61a69eb43c360c1fd2c4f83ea8b59f54 /include/test
parentbbe3053d4bf867f4f3a12f1a3efdb8df8520078d (diff)
coverity#1399437 Uninitialized scalar field
Change-Id: I0df77d7a986ca6485cfe18ee40249d6bb5621528
Diffstat (limited to 'include/test')
-rw-r--r--include/test/testinteractionhandler.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/test/testinteractionhandler.hxx b/include/test/testinteractionhandler.hxx
index 4e627b7e0a7f..3e8c810774cc 100644
--- a/include/test/testinteractionhandler.hxx
+++ b/include/test/testinteractionhandler.hxx
@@ -38,6 +38,7 @@ class TestInteractionHandler : public cppu::WeakImplHelper<css::lang::XServiceIn
public:
TestInteractionHandler(const OUString& sPassword)
: msPassword(sPassword)
+ , mbPasswordRequested(false)
{}
virtual ~TestInteractionHandler() override