summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 17:12:51 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 17:41:09 -0600
commita7901132237f8bbd3ce42f0deda3fb7922230722 (patch)
treeee96a57305c151485d0323638fb2d77c61a98500 /lotuswordpro
parent7fe5a66e4dca57c152ab500ef2dc46fe4d6d619b (diff)
coverity#738736 Uninitialized scalar field
Change-Id: I389ae4a01dc9ee2005488b0127f2ebfc76f564f9
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpoleobject.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpoleobject.cxx b/lotuswordpro/source/filter/lwpoleobject.cxx
index 842e1992b295..5251a4aed3d0 100644
--- a/lotuswordpro/source/filter/lwpoleobject.cxx
+++ b/lotuswordpro/source/filter/lwpoleobject.cxx
@@ -198,7 +198,9 @@ void LwpGraphicOleObject::GetGrafScaledSize(double & fWidth, double & fHeight)
* @date: 2/22/2005
*/
LwpOleObject::LwpOleObject(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
- : LwpGraphicOleObject(objHdr, pStrm),m_SizeRect(0,0,5,5)
+ : LwpGraphicOleObject(objHdr, pStrm)
+ , cPersistentFlags(0)
+ , m_SizeRect(0,0,5,5)
{
}
/**