summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-08-29 21:13:05 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-08-30 10:51:46 +0200
commit9dc6fae25e6bf919d14b4bcb262a359893771ac0 (patch)
tree6d3435e9469430f55130d23bc982a12126050f3c /filter
parent97440778670d6b471d8165eb9f86def08e1b8602 (diff)
ofz: MemorySanitizer: use-of-uninitialized-value
Change-Id: I50411f90940c1225b6164d4eadcb9dbd14e9e2b3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121238 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index dade5bcd999e..0fde06b7e7af 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4209,7 +4209,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r
aObjData.bShapeType = maShapeRecords.SeekToContent( rSt, DFF_msofbtSp );
if ( aObjData.bShapeType )
{
- sal_uInt32 temp;
+ sal_uInt32 temp(0);
rSt.ReadUInt32( aObjData.nShapeId )
.ReadUInt32( temp );
aObjData.nSpFlags = ShapeFlag(temp);