diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 18:39:11 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 18:40:46 -0600 |
commit | bc55934ef4c049d1f1c1e2e4e0533cf2958ead25 (patch) | |
tree | bbd0ccc308f82b3c479dfab82d773dc2ba40fac8 /lotuswordpro | |
parent | e94cdddd560307d9aceb5f59a51cd0e809f72b69 (diff) |
coverity#738752: Unitialized scalar field
Change-Id: I54bdd68a7520ac1e936d048cbb7a72c8b7fdfe7c
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwptablelayout.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx index c5421d81ddc8..7aa0bcabddb7 100644 --- a/lotuswordpro/source/filter/lwptablelayout.cxx +++ b/lotuswordpro/source/filter/lwptablelayout.cxx @@ -1432,6 +1432,8 @@ void LwpColumnLayout::RegisterStyle(double dCalculatedWidth) LwpTableHeadingLayout::LwpTableHeadingLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpTableLayout(objHdr, pStrm) + , cStartRow(0) + , cEndRow(0) {} LwpTableHeadingLayout::~LwpTableHeadingLayout() |