From 804597191bc70be080be59f093e96b2cda37e6a9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 15 Apr 2014 20:33:52 +0100 Subject: coverity#1202944 Uninitialized scalar field Change-Id: Ibc9bdc30faae1cc72a39db3e8130dfaadf937e26 --- svx/source/svdraw/svdmodel.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'svx') 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; -- cgit