diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 16:59:13 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 17:41:08 -0600 |
commit | 549dfab272e766076124ef912ff36e43fd5941c4 (patch) | |
tree | 884ea73d02e25647b36dbe02a3fce0b593978dc8 /lotuswordpro | |
parent | f32015ccf6cca20f994c460223d4fa64768094e7 (diff) |
coverity#738734 Uninitialized scalar field
Change-Id: I78c489596fc8a51fa8d9b6c5bad545558830f474
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpnotes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpnotes.cxx b/lotuswordpro/source/filter/lwpnotes.cxx index dc5c6619c0d3..c6028cf83abe 100644 --- a/lotuswordpro/source/filter/lwpnotes.cxx +++ b/lotuswordpro/source/filter/lwpnotes.cxx @@ -132,8 +132,8 @@ void LwpFribNote::XFConvert(XFContentContainer* pCont) LwpNoteLayout::LwpNoteLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpFrameLayout(objHdr, pStrm) + , m_nTime(0) { - } LwpNoteLayout::~LwpNoteLayout() |