summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2011-12-12 19:01:42 +0100
committerEike Rathke <erack@redhat.com>2011-12-12 19:01:42 +0100
commitfbdddb784108b9f4e5e3d76c50b9aac81c73a019 (patch)
treeda1fd401be339f37a744e9a9976607369edde663
parent53757e9d714d6b3cde83d5b4c390e9e2739bfb2c (diff)
fixed rhbz#754051 Libreoffice calc crashes when re-opening a xlxs file
ScMatrixImpl lacked initialization of pErrorInterpreter=NULL. Signed-off-by: Kohei Yoshida <kohei.yoshida@suse.com>
-rw-r--r--sc/source/core/tool/scmatrix.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index 912eef1ed..e53ca6b74 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -244,6 +244,7 @@ private:
ScMatrixImpl::ScMatrixImpl(SCSIZE nC, SCSIZE nR, ScMatrix::DensityType eType) :
maMat(nR, nC, toMddsDensityType(eType)),
meType(eType),
+ pErrorInterpreter(NULL),
mbCloneIfConst(true)
{
}