summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-11 20:56:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-11 20:57:08 +0100
commitfbd001f3502cd71ba2b31536eba3826d846fba95 (patch)
treee01d03def0f14f8794b72b2264584c3d7307c24b /sd
parentb2b7d591bd447de612b01a58406a25f3a3a8d91c (diff)
CID#707537 unitialized scalars
Change-Id: I68c81f46002ad07196ba357c41687ceb56d9663c
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/ppt/pptanimations.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/sd/source/filter/ppt/pptanimations.hxx b/sd/source/filter/ppt/pptanimations.hxx
index 04abeeecd920..eca157f77969 100644
--- a/sd/source/filter/ppt/pptanimations.hxx
+++ b/sd/source/filter/ppt/pptanimations.hxx
@@ -203,6 +203,15 @@ public:
sal_Int32 mnU1, mnU3, mnU4;
+ AnimationNode()
+ : mnGroupType(0)
+ , mnRestart(0)
+ , mnFill(0)
+ , mnNodeType(0)
+ , mnDuration(0)
+ , mnU1(0), mnU3(0), mnU4(0)
+ {
+ }
public:
friend SvStream& operator>>(SvStream& rIn, AnimationNode& rAtom);