summaryrefslogtreecommitdiff
path: root/sw/source/core
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-12 14:29:48 +0000
committerAndras Timar <andras.timar@collabora.com>2018-03-19 10:18:59 +0100
commit65309ff7d3d89d8222461ac55f33b2482d4280ba (patch)
tree203675da3db495aa969b78a56b12609e296b1c18 /sw/source/core
parentc55f277eb88a003a2b8b87bd4d231f50edf26aa8 (diff)
tdf#107094 backward heading search doesn't always work
regression from... commit 84e44386d70e886f9bae633ebe915ea3a52f8dbd Author: Caolán McNamara <caolanm@redhat.com> Date: Wed Nov 12 10:35:18 2014 +0000 coverity#982189 Unchecked return value so put it back the way it was and explicitly ignore the return instead Change-Id: I6f5ef42b38236ea5f70ddbccfa25a81f2f3e976c Change-Id: I0c0084247e8570ace2198fa893db273dab00d2b0 Reviewed-on: https://gerrit.libreoffice.org/51147 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com> (cherry picked from commit b8345af80078f9eee29a391fe84b2506b37d24ea)
Diffstat (limited to 'sw/source/core')
-rw-r--r--sw/source/core/crsr/crstrvl.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx
index 8c1a0627f1d0..b65ba7d8dcf3 100644
--- a/sw/source/core/crsr/crstrvl.cxx
+++ b/sw/source/core/crsr/crstrvl.cxx
@@ -976,8 +976,9 @@ bool SwCursorShell::GotoPrevOutline()
SwNode* pNd = &(pCursor->GetNode());
SwOutlineNodes::size_type nPos;
- bool bRet = rNds.GetOutLineNds().Seek_Entry(pNd, &nPos);
- if (bRet && nPos)
+ bool bRet = false;
+ (void)rNds.GetOutLineNds().Seek_Entry(pNd, &nPos);
+ if (nPos)
{
--nPos; // before