diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 16:21:46 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 17:41:07 -0600 |
commit | 0e7f4d044425d8740678723c30410c5019ddae14 (patch) | |
tree | 3b666f47ac85b849c81e1796400738c0b67c3368 | |
parent | 9708af4e23f742803d30db3b6388f0f41627f61b (diff) |
coverity#738730 Uninitialized scalar field
Change-Id: I701eb9ba462b5a49bf49ba6a5319b633e5b771f3
-rw-r--r-- | lotuswordpro/source/filter/lwpmarker.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpmarker.cxx b/lotuswordpro/source/filter/lwpmarker.cxx index f3da43a215f5..378206c55995 100644 --- a/lotuswordpro/source/filter/lwpmarker.cxx +++ b/lotuswordpro/source/filter/lwpmarker.cxx @@ -315,6 +315,7 @@ void LwpCHBlkMarker::EnumAllKeywords() LwpBookMark::LwpBookMark(LwpObjectHeader &objHdr, LwpSvStream *pStrm) : LwpDLNFVList(objHdr,pStrm) + , m_nFlag(0) { } |