sc/source/core/tool/formulagroup.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4dd0a860ea912c402072dde0f58c9e757a9fc848
Author: Kohei Yoshida <kohei.yosh...@collabora.com>
Date:   Wed Nov 27 23:58:29 2013 -0500

    Crasher fix. Check for NULL.
    
    Change-Id: Iae1fa695ea0266e97ae367db71fe6a82e6a3da1d

diff --git a/sc/source/core/tool/formulagroup.cxx 
b/sc/source/core/tool/formulagroup.cxx
index 0fed853..3909bca 100644
--- a/sc/source/core/tool/formulagroup.cxx
+++ b/sc/source/core/tool/formulagroup.cxx
@@ -397,7 +397,7 @@ bool FormulaGroupInterpreterSoftware::interpret(ScDocument& 
rDoc, const ScAddres
                                 fillMatrix(*pMat, nCol, pStrs, nRowSize);
                             }
                         }
-                        else
+                        else if (rArray.mpNumericArray)
                         {
                             // Numeric cells only.
                             const double* pNums = rArray.mpNumericArray;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to