summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-09-03 09:47:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-09-03 16:49:05 +0200
commitfae7e172e2f7585ed633c9c6328fd25e2f5dd6df (patch)
tree3332725bd5125fec9be48e617eb8ddd47c3bf995 /sd/source
parent3b6b93e40e079d0fc93c68fbb28da0be696c2566 (diff)
ofz: MemorySanitizer: use-of-uninitialized-value
Change-Id: I47934f5a6b34ef0f495098f78c53c088bf5152e4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121595 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/filter/ppt/pptinanimations.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx
index d03efbc87980..cff1e2d898dd 100644
--- a/sd/source/filter/ppt/pptinanimations.cxx
+++ b/sd/source/filter/ppt/pptinanimations.cxx
@@ -2241,7 +2241,7 @@ bool AnimationImporter::importAttributeValue( const Atom* pAtom, Any& rAny )
sal_uInt32 nRecLen = pAtom->getLength();
if ( nRecLen >= 1 )
{
- sal_Int8 nType;
+ sal_Int8 nType(0);
mrStCtrl.ReadSChar( nType );
switch( nType )
{