[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - sc/source
Eike Rathke
erack at redhat.com
Wed Nov 23 12:45:16 UTC 2016
sc/source/core/tool/address.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a346bfaa4492fa53bf8cd21677d7880a86bbb811
Author: Eike Rathke <erack at redhat.com>
Date: Mon Nov 21 22:55:11 2016 +0100
Resolves: tdf#104096 reset also rRawRes if trailing characters are present
... in lcl_ScAddress_Parse_OOo() so that ScRange::Parse() doesn't receive a
"partially valid" result and does not attempt to follow the entire column/row
path.
Change-Id: Ie37c9d22280e30f770422fb621e3b9d972ec1546
(cherry picked from commit 8846cc2218091aa2af8ee3aadd81fd8a80e3b303)
Reviewed-on: https://gerrit.libreoffice.org/31058
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx
index 265877c..134067c 100644
--- a/sc/source/core/tool/address.cxx
+++ b/sc/source/core/tool/address.cxx
@@ -1439,7 +1439,7 @@ static ScRefFlags lcl_ScAddress_Parse_OOo( const sal_Unicode* p, ScDocument* pDo
nRes |= ScRefFlags::VALID;
}
else
- nRes = nBailOutFlags;
+ nRes = rRawRes = nBailOutFlags;
return nRes;
}
More information about the Libreoffice-commits
mailing list