[Libreoffice-commits] .: Branch 'libreoffice-3-4' - sc/source

Eike Rathke erack at kemper.freedesktop.org
Mon Dec 12 10:08:42 PST 2011


 sc/source/core/tool/scmatrix.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit fbdddb784108b9f4e5e3d76c50b9aac81c73a019
Author: Eike Rathke <erack at redhat.com>
Date:   Mon Dec 12 19:01:42 2011 +0100

    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 at suse.com>

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)
 {
 }


More information about the Libreoffice-commits mailing list