summaryrefslogtreecommitdiff
path: root/lotuswordpro/source
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:33:33 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:37:14 -0600
commitc1788970adaa374f9b67f20f4385222b3a4d3c33 (patch)
treec3732a135ec3cb8214353890b2c761558d1d6d6a /lotuswordpro/source
parentd6dbee71e3e9087007345aa825903c12c2bf11ca (diff)
coverity#738726: Unitialized scalar field
Change-Id: I2c2354e95cc73c2f68b4feb0196754d26be4c19a
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r--lotuswordpro/source/filter/lwplaypiece.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwplaypiece.cxx b/lotuswordpro/source/filter/lwplaypiece.cxx
index 76e90a12625c..ce95003f2380 100644
--- a/lotuswordpro/source/filter/lwplaypiece.cxx
+++ b/lotuswordpro/source/filter/lwplaypiece.cxx
@@ -103,6 +103,12 @@ void LwpLayoutGeometry::Parse(IXFStream* /*pOutputStream*/)
LwpLayoutScale::LwpLayoutScale(LwpObjectHeader& objHdr, LwpSvStream* pStrm)
: LwpVirtualPiece(objHdr, pStrm)
+ , m_nScaleMode(0)
+ , m_nScalePercentage(0)
+ , m_nScaleWidth(0)
+ , m_nScaleHeight(0)
+ , m_nContentRotation(0)
+ , m_nPlacement(0)
{}
LwpLayoutScale::~LwpLayoutScale()