[Libreoffice-commits] core.git: sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Wed Nov 27 20:59:44 PST 2013
sc/source/core/tool/formulagroup.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 4dd0a860ea912c402072dde0f58c9e757a9fc848
Author: Kohei Yoshida <kohei.yoshida at 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;
More information about the Libreoffice-commits
mailing list