diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 11:43:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 14:03:29 +0000 |
commit | 830b5bf0d6f9f5bf6607e0dd6848557628c8f5e2 (patch) | |
tree | 36a0c637796cc5b38caaefb808b28fab322de40b /lotuswordpro | |
parent | fb4071204205e06b537e968ebd97c37fccd4d1f2 (diff) |
coverity#738685 Uninitialized pointer field
Change-Id: Ieee94d9dd2913b03260e98a5ac85aac27301dcf0
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpbulletstylemgr.cxx | 9 |
1 files 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) |