diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-21 20:59:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-22 08:43:50 +0100 |
commit | f74938050455279982554c3ad3daa4d23c4eaeee (patch) | |
tree | 8b8954915c7e4de2f899607ddd6bf77f2c3db7d3 /sc/source | |
parent | 6e7bebf381197cd592c8906759b221743f77f6d1 (diff) |
coverity#708060 Uninitialized scalar field
Change-Id: Ice3fdf42c7b8692cd70da643333b9fa313e0eaae
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/xml/XMLColumnRowGroupExport.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sc/source/filter/xml/XMLColumnRowGroupExport.cxx b/sc/source/filter/xml/XMLColumnRowGroupExport.cxx index 51dcb9f4fb0d..7d5677fffe98 100644 --- a/sc/source/filter/xml/XMLColumnRowGroupExport.cxx +++ b/sc/source/filter/xml/XMLColumnRowGroupExport.cxx @@ -27,7 +27,10 @@ using namespace xmloff::token; -ScMyColumnRowGroup::ScMyColumnRowGroup() : bDisplay(false) +ScMyColumnRowGroup::ScMyColumnRowGroup() + : nField(0) + , nLevel(0) + , bDisplay(false) { } |