summaryrefslogtreecommitdiffstats
path: root/src/fold.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-21 14:01:41 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-21 14:01:41 +0100
commit6a78f328442073c32d58eafc13ce5a1ca7729eeb (patch)
tree548fff3a725c758dc9dde5f5444498c462c5219e /src/fold.c
parent9aff970204234193045cfee205d51e2393e93bfd (diff)
patch 8.2.2176: crash with a sequence of fold commandsv8.2.2176
Problem: Crash with a sequence of fold commands. Solution: Bail out when there are no folds at all. Add a test (Dominique Pellé) (closes #7515)
Diffstat (limited to 'src/fold.c')
-rw-r--r--src/fold.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fold.c b/src/fold.c
index 82ce7e707d..f889f4c74d 100644
--- a/src/fold.c
+++ b/src/fold.c
@@ -916,7 +916,7 @@ foldMoveTo(
{
if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
{
- if (!updown)
+ if (!updown || gap->ga_len == 0)
break;
// When moving up, consider a fold above the cursor; when