summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-15 20:33:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-16 11:23:11 +0100
commit804597191bc70be080be59f093e96b2cda37e6a9 (patch)
treebf4817b2411a31bc6bf8f1bc410ce6e2f56d9573 /svx
parentcd385f2480b3fbcdffde8d111961f154137294e1 (diff)
coverity#1202944 Uninitialized scalar field
Change-Id: Ibc9bdc30faae1cc72a39db3e8130dfaadf937e26
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 29c13a34edaf..3e854af2e784 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -130,6 +130,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
pUndoStack=NULL;
pRedoStack=NULL;
nMaxUndoCount=16;
+ mnUniqueCommentID=0;
pAktUndoGroup=NULL;
nUndoLevel=0;
mbUndoEnabled=true;
@@ -163,6 +164,8 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
mbKernAsianPunctuation = false;
mbAddExtLeading = false;
mnHandoutPageCount = 0;
+ nReserveUInt6 = 0;
+ nReserveUInt7 = 0;
mbDisableTextEditUsesCommonUndoManager = false;