diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:50:28 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:50:28 -0600 |
commit | 2f4db1cf6eaf28fc5907dca4870368ea4b67fbc0 (patch) | |
tree | ccf2a048fdc8009d98240a186ae74a5456aab864 /lotuswordpro | |
parent | 79db1351aa8dacb88d727e5778ac98ad1bf45847 (diff) |
coverity#738739: Unitialized scalar field
Change-Id: I8c3def56a43cd10ffd02e3541d02377d00689c29
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwppagelayout.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx index 39f2031b8ad8..1184ecf5ff8d 100644 --- a/lotuswordpro/source/filter/lwppagelayout.cxx +++ b/lotuswordpro/source/filter/lwppagelayout.cxx @@ -895,6 +895,7 @@ void LwpHeaderLayout::RegisterStyle(XFMasterPage* mp1) LwpFooterLayout::LwpFooterLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ) : LwpPlacableLayout( objHdr, pStrm ) + , m_nBorderOffset(0) { } |