summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-19 09:31:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-19 09:33:01 +0000
commit10985869bf327c6b9c8d67803d8fb487af3e871a (patch)
tree876c6e057d748e10cdc472e4c1e607c1fee1e04e /filter
parent37a00689600cc9ec8bef109dc046579849a56bb8 (diff)
coverity#984090 Uninitialized scalar field
Change-Id: I1df4f04b46e1b9c2d82d85aa915e4d04c5959e30
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 696563d9a282..ffc463e0847b 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -5504,7 +5504,11 @@ SvxMSDffManager::SvxMSDffManager( SvStream& rStCtrl_, const OUString& rBaseURL )
nOffsDgg( 0 ),
nBLIPCount( USHRT_MAX ), // initialize with error, since we first have to check
nShapeCount( USHRT_MAX ), // whether the control stream contains the correct data
+ nGroupShapeFlags(0),
maBaseURL( rBaseURL ),
+ mnCurMaxShapeId(0),
+ mnDrawingsSaved(0),
+ mnIdClusters(0),
rStCtrl( rStCtrl_ ),
pStData( 0 ),
pStData2( 0 ),