sc/source/core/tool/compiler.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 0983003c84f0b1c1faa52cc0aec5a2d1188e325c
Author:     Caolán McNamara <[email protected]>
AuthorDate: Thu Mar 5 19:36:52 2026 +0000
Commit:     Caolán McNamara <[email protected]>
CommitDate: Fri Mar 6 09:27:22 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]>

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 169c46614714..7f7ac6ca3bf0 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)

Reply via email to