From cffe7a15b09bf23b6aae7e919059e0e7f9b7131e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Wed, 23 Apr 2014 13:34:44 +0100 Subject: [PATCH] coverity#707880 Uninitialized scalar field Change-Id: Id58c2e45ba5043228da617eeb3bb84ef21d0f59e --- framework/source/loadenv/loadenv.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx index b4f1a8e1c201..9d0c4458171d 100644 --- a/framework/source/loadenv/loadenv.cxx +++ b/framework/source/loadenv/loadenv.cxx @@ -125,7 +125,12 @@ class LoadEnvListener : public ::cppu::WeakImplHelper2< css::frame::XLoadEventLi LoadEnv::LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext) throw(LoadEnvException, css::uno::RuntimeException) - : m_xContext (xContext) + : m_xContext(xContext) + , m_nSearchFlags(0) + , m_eFeature(E_NO_FEATURE) + , m_eContentType(E_UNSUPPORTED_CONTENT) + , m_bCloseFrameOnError(false) + , m_bReactivateControllerOnError(false) , m_pQuietInteraction( 0 ) { }