summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-02-18 19:51:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2022-02-19 12:00:24 +0100
commit869a2228401195179deea0a6ad994183841c2c4d (patch)
treeefbecc1a334b0ae637d344cee949debc43b8f91c /sw
parent8a34ce5c3a1c4feffefa8a6c9315aed61cede2e6 (diff)
cid#1500273 silence Dereference null return value
this has been unchecked since the initial commit, so let's assume its intentional Change-Id: Iefe5ea1c49b6e97d3b7bb1021d214c00d4369c72 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130174 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/layout/flowfrm.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/layout/flowfrm.cxx b/sw/source/core/layout/flowfrm.cxx
index c53512b2763a..9fb4575e98c8 100644
--- a/sw/source/core/layout/flowfrm.cxx
+++ b/sw/source/core/layout/flowfrm.cxx
@@ -2339,6 +2339,7 @@ bool SwFlowFrame::MoveBwd( bool &rbReformat )
else
{
const SwFrame *pCol = m_rThis.FindColFrame();
+ assert(pCol);
bool bGoOn = true;
bool bJump = false;
do