From 830b5bf0d6f9f5bf6607e0dd6848557628c8f5e2 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 13 Mar 2014 11:43:13 +0000 Subject: coverity#738685 Uninitialized pointer field Change-Id: Ieee94d9dd2913b03260e98a5ac85aac27301dcf0 --- lotuswordpro/source/filter/lwpbulletstylemgr.cxx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx index 6b1114b07a1b..5c6719c27fb6 100644 --- a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx +++ b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx @@ -74,10 +74,15 @@ #include "xfilter/xflist.hxx" #include "lwpglobalmgr.hxx" -LwpBulletStyleMgr::LwpBulletStyleMgr() : -m_pBulletList(NULL), m_bContinue(sal_True), m_bIsBulletSkipped(sal_False), m_nCurrentPos(0xFF) +LwpBulletStyleMgr::LwpBulletStyleMgr() + : m_pFoundry(NULL) + , m_pBulletList(NULL) + , m_bContinue(sal_True) + , m_bIsBulletSkipped(sal_False) + , m_nCurrentPos(0xFF) { } + LwpBulletStyleMgr::~LwpBulletStyleMgr() { if (m_pBulletList) -- cgit