diff options
author | Sarper Akdemir <sarper.akdemir@collabora.com> | 2021-06-19 20:55:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-06-20 16:26:52 +0200 |
commit | 0dfbdb1201c533a8fe2951cf3faf2a88f3855244 (patch) | |
tree | cb12e55bb14306bbdb1579f5b51350738b3fa0a7 /oox | |
parent | 6c7075ee60e799db8b8f94a6d0317ad9bcb75b5d (diff) |
cid#1486005 Uninitialized scalar field
since...
commit 2cfccfba09faa5c3bb973136ffe99d534d09c881
Date: Sun May 9 20:56:41 2021 +0300
tdf#59323: ooxml import: hasListStyleOnImport
Change-Id: Ib5d557bc0037bb72e9635391d6991fc1d8e5f2a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117504
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textliststyle.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/drawingml/textliststyle.cxx b/oox/source/drawingml/textliststyle.cxx index 175b6caf879b..42679ad4451c 100644 --- a/oox/source/drawingml/textliststyle.cxx +++ b/oox/source/drawingml/textliststyle.cxx @@ -32,6 +32,7 @@ TextListStyle::~TextListStyle() } TextListStyle::TextListStyle(const TextListStyle& rStyle) + : mbHasListStyleOnImport(false) { for ( size_t i = 0; i < NUM_TEXT_LIST_STYLE_ENTRIES; i++ ) { |