diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-02 14:54:54 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-03 09:10:55 +0000 |
commit | 89956a0586401dfafea3e42dc491d8f6331328f1 (patch) | |
tree | 94bc0002e69cf7ba5b6f715b153ef84f7dcb154f | |
parent | ad90e22f1970d019e1f2a1e8ba8020c0f0cb36c4 (diff) |
coverity#1341507 Uninitialized pointer field
Change-Id: I77d59c91f09d2546468942263dbd71ac4665efb0
-rw-r--r-- | sc/source/core/tool/scmatrix.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index 42d25ba7b001..881cb816663e 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -3029,6 +3029,7 @@ void ScVectorRefMatrix::ensureFullMatrix() ScVectorRefMatrix::ScVectorRefMatrix(const formula::DoubleVectorRefToken* pToken, SCSIZE nRowStart, SCSIZE nRowSize) : ScMatrix() , mpToken(pToken) + , mpErrorInterpreter(nullptr) , mnRowStart(nRowStart) , mnRowSize(nRowSize) { |