[Libreoffice-commits] core.git: sc/source
Eike Rathke
erack at redhat.com
Tue Apr 26 16:24:28 UTC 2016
sc/source/core/tool/interpr8.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 4905c8bf7834b1ca79139c62f4e8b0672e9ddc13
Author: Eike Rathke <erack at redhat.com>
Date: Tue Apr 26 18:22:25 2016 +0200
early bail out if nGlobalError, tdf#97831 follow-up
Change-Id: Ic45d11cecc4bb372dac3deca27ae3665303d5b29
diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx
index 20ceb72..a03fbb8 100644
--- a/sc/source/core/tool/interpr8.cxx
+++ b/sc/source/core/tool/interpr8.cxx
@@ -1407,7 +1407,7 @@ void ScInterpreter::ScConcat_MS()
}
size_t nRefInList = 0;
- while ( nParamCount-- > 0 )
+ while ( nParamCount-- > 0 && !nGlobalError )
{
switch ( GetStackType() )
{
More information about the Libreoffice-commits
mailing list