summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-23 18:08:56 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-23 18:08:56 +0100
commit60629d642541a089c322e65963c0a77e5f77eb79 (patch)
tree1f5a0613727dbebfd43252caaaebed6c4bfa051d /src/edit.c
parent24922ec23360e7ea7c5a803c9edf476bb6395b32 (diff)
downloadvim-git-60629d642541a089c322e65963c0a77e5f77eb79.tar.gz
patch 8.0.0358: invalid memory access in C-indent codev8.0.0358
Problem: Invalid memory access in C-indent code. Solution: Don't go over end of empty line. (Dominique Pelle, closes #1492)
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 25a123e88..c4e7ddd18 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -8181,7 +8181,8 @@ in_cinkeys(
{
if (try_match && *look == keytyped)
return TRUE;
- ++look;
+ if (*look != NUL)
+ ++look;
}
/*