diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-08 13:44:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-08 13:49:03 +0000 |
commit | 32e38e1ec703dcdcff484eae3634a69e0d9c864e (patch) | |
tree | 9bd4a5bd6791b4ac798e877be26706486632346b /sc | |
parent | d15d0ec6de566f8a2dc2e9c575ecf4e19c070ade (diff) |
coverity#1257111 Uninitialized pointer field
Change-Id: I82c771f0ca7d2593a6f34dd84689cf055f9cf3f3
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/table3.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 04e9d08378e7..f520cd630def 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -868,6 +868,7 @@ class ListenerStartAction : public sc::ColumnSpanSet::ColumnAction public: ListenerStartAction( ScDocument& rDoc ) : + mpCol(0), mpPosSet(new sc::ColumnBlockPositionSet(rDoc)), maStartCxt(rDoc, mpPosSet), maEndCxt(rDoc, mpPosSet) {} |