summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 20:40:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 20:40:50 +0000
commitae97d0c4f364f4085d027c1770be6896627f41d2 (patch)
tree122d2b8886ff306ff90edfb16d517b1af2e5aaa5 /include
parentfb7fb4a9fdac60a004ec4c86afc451a5b5585955 (diff)
covertity#707954 Uninitialized scalar field
Change-Id: I837a2065e0f604ca53b5ebb7464bff9db0cbaf6b
Diffstat (limited to 'include')
-rw-r--r--include/oox/ppt/animationspersist.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/oox/ppt/animationspersist.hxx b/include/oox/ppt/animationspersist.hxx
index 8b05268b1f7e..1c39272d1500 100644
--- a/include/oox/ppt/animationspersist.hxx
+++ b/include/oox/ppt/animationspersist.hxx
@@ -55,8 +55,11 @@ namespace oox { namespace ppt {
struct ShapeTargetElement
{
ShapeTargetElement()
- : mnType( 0 )
- {}
+ : mnType(0)
+ , mnRangeType(0)
+ {
+ maRange.start = maRange.end = 0;
+ }
void convert( ::com::sun::star::uno::Any & aAny, sal_Int16 & rSubType ) const;
sal_Int32 mnType;