From fa8f562bdf7e6c4a7f38078616336e42f4b9c0a5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 24 Mar 2014 10:37:40 +0000 Subject: coverity#738759 Uninitialized pointer field Change-Id: Ic6f85dd76208ce31a3aecd6a638798440a6b7b82 --- lotuswordpro/source/filter/lwptoc.cxx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lotuswordpro') diff --git a/lotuswordpro/source/filter/lwptoc.cxx b/lotuswordpro/source/filter/lwptoc.cxx index 91964322fd5c..f9560961e89b 100644 --- a/lotuswordpro/source/filter/lwptoc.cxx +++ b/lotuswordpro/source/filter/lwptoc.cxx @@ -82,10 +82,15 @@ LwpTocSuperLayout::LwpTocSuperLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpSuperTableLayout(objHdr, pStrm) -{} + , m_nFrom(0) + , m_pCont(NULL) +{ +} LwpTocSuperLayout::~LwpTocSuperLayout() -{} +{ +} + /** * @short Read TOCSUPERTABLELAYOUT object * @return none -- cgit