summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 10:24:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 12:40:24 +0000
commit7be107378b4eaa4aaeaf5199229d175c952d8655 (patch)
tree81568900bf0eb07458510f34a4bb1ab7afc06972 /sd
parent11a671ac5b176c40a2b5a32d2bb8201e95f4b8bb (diff)
coverity#738813 Uninitialized scalar field
Change-Id: Ibd63cdba123a1171b40780bb8a9ab6ef1af6e8a0
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/eppt.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index b2760c6cdbbb..be8b0e9ba4eb 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -71,7 +71,11 @@ PPTWriter::PPTWriter( SvStorageRef& rSvStorage,
mnCnvrtFlags ( nCnvrtFlags ),
mbStatus ( sal_False ),
mbUseNewAnimations ( sal_True ),
+ mnStatMaxValue ( 0 ),
mnLatestStatValue ( 0 ),
+ mnTextStyle( 0 ),
+ mbFontIndependentLineSpacing( false ),
+ mnTextSize( 0 ),
mrStg ( rSvStorage ),
mpCurUserStrm ( NULL ),
mpStrm ( NULL ),
@@ -81,8 +85,13 @@ PPTWriter::PPTWriter( SvStorageRef& rSvStorage,
mpVBA ( pVBA ),
mnExEmbed ( 0 ),
mpExEmbed ( new SvMemoryStream ),
+ mnDrawings ( 0 ),
mnPagesWritten ( 0 ),
- mnTxId ( 0x7a2f64 )
+ mnUniqueSlideIdentifier ( 0 ),
+ mnTxId ( 0x7a2f64 ),
+ mnDiaMode ( 0 ),
+ mnShapeMasterTitle ( 0 ),
+ mnShapeMasterBody ( 0 )
{
}