sc/source/core/tool/compiler.cxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit da549ec37097386ed6d0fe249a76284ea2f6e9d0 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Mar 5 19:36:52 2026 +0000 Commit: Xisco Fauli <[email protected]> CommitDate: Fri Mar 6 16:11:53 2026 +0100 ofz: Use-of-uninitialized-value since: commit 37ef2c37d867b10febb0c6deed820058db7b30c6 Date: Wed Jan 7 10:54:36 2026 +0530 tdf#170249: XLSX - Handle labels in formulas Change-Id: I05f92333700865bc0454423bf79f5dcca34be721 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/201068 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> (cherry picked from commit 0983003c84f0b1c1faa52cc0aec5a2d1188e325c) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/201104 Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index 07c6c9b5b6a9..aaf78acd7754 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -5780,7 +5780,10 @@ bool ScCompiler::GetRefColRowNames(const FormulaToken* pToken, ScComplexRefData& bFound = true; } if (!bFound) + { nError = FormulaError::NoRef; + return false; + } else { if (bSingle)
