diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:38:38 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:38:38 -0600 |
commit | adfaa1a9276370e8aca17b17df23eecb088dd57b (patch) | |
tree | afeef488006259fc7c132f8173346beee52029f6 | |
parent | 2bb8ba663633cf48c14cc0a5013ba55376fde260 (diff) |
coverity#738715 Unitialized scalar field
Change-Id: I3f92d8c0674c4f21983ccb2619270b5210822233
-rw-r--r-- | lotuswordpro/source/filter/lwpfrib.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpfrib.cxx b/lotuswordpro/source/filter/lwpfrib.cxx index ca91ef963855..830dc864bde1 100644 --- a/lotuswordpro/source/filter/lwpfrib.cxx +++ b/lotuswordpro/source/filter/lwpfrib.cxx @@ -86,11 +86,15 @@ #include "lwpglobalmgr.hxx" LwpFrib::LwpFrib(LwpPara* pPara) - : m_pPara(pPara), m_pNext(NULL) + : m_pPara(pPara) + , m_pNext(NULL) + , m_nFribType(0) + , m_pModifiers(NULL) + , m_ModFlag(sal_False) + , m_nRevisionType(0) + , m_bRevisionFlag(sal_False) + , m_nEditor(0) { - m_ModFlag = sal_False; - m_pModifiers = NULL; - m_bRevisionFlag = sal_False; } LwpFrib::~LwpFrib() |