sc/qa/unit/data/qpro/pass/ofz40008-1.wb2 |binary
 sc/source/core/data/table5.cxx           |    3 ++-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 7528bb3c5098a67f32523c028d83dfbc79a7c6a0
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Oct 16 14:12:03 2021 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Sat Oct 16 20:10:59 2021 +0200

    ofz#40008 check if column exists before EndListening attempt
    
    Change-Id: Iad6a7f215aa36fb6f8bb35e14aa5b882bf9773f9
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123703
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/sc/qa/unit/data/qpro/pass/ofz40008-1.wb2 
b/sc/qa/unit/data/qpro/pass/ofz40008-1.wb2
new file mode 100644
index 000000000000..d4adc7d484c9
Binary files /dev/null and b/sc/qa/unit/data/qpro/pass/ofz40008-1.wb2 differ
diff --git a/sc/source/core/data/table5.cxx b/sc/source/core/data/table5.cxx
index 646984b7c699..e885f4c704bd 100644
--- a/sc/source/core/data/table5.cxx
+++ b/sc/source/core/data/table5.cxx
@@ -1148,7 +1148,8 @@ void ScTable::EndListening(sc::EndListeningContext& rCxt, 
const ScAddress& rAddr
     if (!ValidCol(rAddress.Col()))
         return;
 
-    aCol[rAddress.Col()].EndListening(rCxt, rAddress, rListener);
+    if (rAddress.Col() < aCol.size())
+        aCol[rAddress.Col()].EndListening(rCxt, rAddress, rListener);
 }
 
 void ScTable::SetPageStyle(const OUString& rName)

Reply via email to