diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-05-16 20:26:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-05-17 09:44:05 +0200 |
commit | 6e0d2738a5df0e16ebf343f44ef858aa81c18ab8 (patch) | |
tree | dfce215c5490a178fbe7ab30fea0165b05c7db5a /sc | |
parent | 921f770d8980dc0dbc70efee0db872e329f99565 (diff) |
cid#1484878 Uninitialized scalar field
Change-Id: If7ed90b34a44f73e35080d4967618af3c215b50b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115682
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/autofilterbuffer.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/filter/oox/autofilterbuffer.cxx b/sc/source/filter/oox/autofilterbuffer.cxx index 6e205a032b24..8eb24f231bd4 100644 --- a/sc/source/filter/oox/autofilterbuffer.cxx +++ b/sc/source/filter/oox/autofilterbuffer.cxx @@ -404,6 +404,7 @@ ApiFilterSettings Top10Filter::finalizeImport() ColorFilter::ColorFilter(const WorkbookHelper& rHelper) : FilterSettingsBase(rHelper) + , mbIsBackgroundColor(false) { } |