summaryrefslogtreecommitdiff
path: root/sc/source/core/data
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-08 13:44:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-08 13:51:09 +0000
commit72888d56b7821614912736a2b6a41f512f98442b (patch)
tree717ce521aebbbbe338b8e27390649abac2f44e4f /sc/source/core/data
parent18c90a46f745d7017f23cbb06e010ee93f572349 (diff)
coverity#1257111 Uninitialized pointer field
Change-Id: I82c771f0ca7d2593a6f34dd84689cf055f9cf3f3 (cherry picked from commit 32e38e1ec703dcdcff484eae3634a69e0d9c864e)
Diffstat (limited to 'sc/source/core/data')
-rw-r--r--sc/source/core/data/table3.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index 1b818c5ddb4d..4637e744e8b0 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -866,6 +866,7 @@ class ListenerStartAction : public sc::ColumnSpanSet::ColumnAction
public:
ListenerStartAction( ScDocument& rDoc ) :
+ mpCol(0),
mpPosSet(new sc::ColumnBlockPositionSet(rDoc)),
maStartCxt(rDoc, mpPosSet),
maEndCxt(rDoc, mpPosSet) {}