diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-27 15:34:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-27 17:03:04 +0000 |
commit | 773db5198ee21941c34aba84014552bf41df699d (patch) | |
tree | 3878d8b6594e1e41293adcd6ffd300f8daf8dd61 | |
parent | 8dec95f1d591fe2e5418717a8d810bb19c4d769b (diff) |
coverity#707681 Uninitialized scalar field
Change-Id: I88796c85447571d446c398439066029c3a200b4b
-rw-r--r-- | configmgr/source/configurationregistry.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configmgr/source/configurationregistry.cxx b/configmgr/source/configurationregistry.cxx index 6bf87a48e7a7..f22bc818ba2d 100644 --- a/configmgr/source/configurationregistry.cxx +++ b/configmgr/source/configurationregistry.cxx @@ -317,6 +317,7 @@ private: Service::Service( css::uno::Reference< css::uno::XComponentContext > const & context) + : readOnly_(false) { assert(context.is()); try { |