| author | Eike Rathke <erack@redhat.com> | 2011-12-12 18:01:42 (GMT) |
|---|---|---|
| committer | Eike Rathke <erack@redhat.com> | 2011-12-12 18:01:42 (GMT) |
| commit | fbdddb784108b9f4e5e3d76c50b9aac81c73a019 (patch) (side-by-side diff) | |
| tree | da1fd401be339f37a744e9a9976607369edde663 | |
| parent | 53757e9d714d6b3cde83d5b4c390e9e2739bfb2c (diff) | |
| download | calc-fbdddb784108b9f4e5e3d76c50b9aac81c73a019.zip calc-fbdddb784108b9f4e5e3d76c50b9aac81c73a019.tar.gz | |
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.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 912eef1..e53ca6b 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) { } |
