diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:38:56 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:38:56 -0600 |
commit | 31283140ab5bed82d7dd1fb4af8aec4bb08173dd (patch) | |
tree | de74a5f7e7333195c1510d49efe7bba0a0dfa55f | |
parent | b9924a7743d762c7c44c820957576d9eae433f5a (diff) |
coverity#738743: Unitialized scalar field
Change-Id: I6d8efb5f88b12705fb5efe33dc2d799a7280cda3
-rw-r--r-- | lotuswordpro/source/filter/lwprowlayout.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwprowlayout.cxx b/lotuswordpro/source/filter/lwprowlayout.cxx index 596dd5f0c04b..ba7162450925 100644 --- a/lotuswordpro/source/filter/lwprowlayout.cxx +++ b/lotuswordpro/source/filter/lwprowlayout.cxx @@ -74,6 +74,11 @@ LwpRowLayout::LwpRowLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpVirtualLayout(objHdr, pStrm) + , crowid(0) + , cheight(0) + , cLeaderDotCount(0) + , cLeaderDotY(0) + , cRowFlags(0) { m_ConnCellList.clear(); } |