From fcb23c791e9dbf177e8b603a72198eba0b4dd3b2 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 6 Dec 2017 17:05:24 +0000 Subject: table of objects crashes on first update with object in document MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ia25a09060f16e5d286dff2bbc3facba5ac68cdc4 Reviewed-on: https://gerrit.libreoffice.org/45971 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sw/source/core/tox/ToxTextGenerator.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/source/core/tox/ToxTextGenerator.cxx b/sw/source/core/tox/ToxTextGenerator.cxx index 61b664e70c09..3742fd1e3cd0 100644 --- a/sw/source/core/tox/ToxTextGenerator.cxx +++ b/sw/source/core/tox/ToxTextGenerator.cxx @@ -303,8 +303,8 @@ ToxTextGenerator::HandleTextToken(const SwTOXSortTabBase& source, SwAttrPool& po if( source.aTOXSources.empty() ) return result; - const SwTextNode* pSrc = source.aTOXSources.at(0).pNd->GetTextNode(); - if (!pSrc->HasHints()) { + const SwTextNode* pSrc = source.aTOXSources.front().pNd->GetTextNode(); + if (!pSrc || !pSrc->HasHints()) { return result; } const SwpHints& hints = pSrc->GetSwpHints(); -- cgit v1.2.3