summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-12-06 17:05:24 +0000
committerMichael Stahl <mstahl@redhat.com>2017-12-07 22:10:26 +0100
commitc4973602128209b8e39e26462c9e73a3bafe9ec1 (patch)
tree1f5bb514b1629dfc432c8bd71e287a65bbf83894 /sw/source
parentfcc949fc94dc05c0562701dab58eb3ad6f1c2962 (diff)
table of objects crashes on first update with object in document
Change-Id: Ia25a09060f16e5d286dff2bbc3facba5ac68cdc4 Reviewed-on: https://gerrit.libreoffice.org/45972 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/tox/ToxTextGenerator.cxx4
1 files 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();