diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-06-01 20:49:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-06-02 00:34:00 +0200 |
commit | 389a8d52d9961f89c0b2847b30ee1ca59a8fdc80 (patch) | |
tree | 354e3b2dd77b0be6d93e6f05619b12da6523b08f /sw | |
parent | 30aac756bef3170101194d94070fd0975b781227 (diff) |
Related: tdf#122081 null-deref of SwFootnoteFrame
load doc, ctrl+end, ctrl+home, ctrl+6 enter 29, return, wheel scroll
down 7 or 8 times and this null-deref
Change-Id: I1963a89e3223de89f3414e435accd8d8ebfe80a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152511
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/text/txtftn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/txtftn.cxx b/sw/source/core/text/txtftn.cxx index c86c1bc4ab0d..035158e2bd25 100644 --- a/sw/source/core/text/txtftn.cxx +++ b/sw/source/core/text/txtftn.cxx @@ -664,7 +664,7 @@ void SwTextFrame::ConnectFootnote( SwTextFootnote *pFootnote, const SwTwips nDea mbInFootnoteConnect = false; return; } - else if( pSrcFrame ) + else if (pSrcFrame && pFootnoteFrame) { SwFootnoteBossFrame *pFootnoteBoss = pFootnoteFrame->FindFootnoteBossFrame(); if( !pFootnoteBoss->IsInSct() || |