From 02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 4 Apr 2014 14:09:48 +0100 Subject: coverity#738691 Uninitialized scalar field Change-Id: I961ab20b4ecb902469e9f5eec4c13b9f51a0aba1 --- lotuswordpro/source/filter/lwpdivopts.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lotuswordpro') diff --git a/lotuswordpro/source/filter/lwpdivopts.cxx b/lotuswordpro/source/filter/lwpdivopts.cxx index 292034f31945..2453710c08ad 100644 --- a/lotuswordpro/source/filter/lwpdivopts.cxx +++ b/lotuswordpro/source/filter/lwpdivopts.cxx @@ -80,7 +80,11 @@ void LwpHyphenOptions::Read(LwpObjectStream *pStrm) pStrm->SkipExtra(); } -LwpTextLanguage::LwpTextLanguage(){} +LwpTextLanguage::LwpTextLanguage() + : m_nLanguage(0) +{ +} + LwpTextLanguage::~LwpTextLanguage(){} void LwpTextLanguage::Read(LwpObjectStream *pStrm) -- cgit