diff src/edit.c @ 10938:3b82ab325d59 v8.0.0358

patch 8.0.0358: invalid memory access in C-indent code commit https://github.com/vim/vim/commit/60629d642541a089c322e65963c0a77e5f77eb79 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 23 18:08:56 2017 +0100 patch 8.0.0358: invalid memory access in C-indent code Problem: Invalid memory access in C-indent code. Solution: Don't go over end of empty line. (Dominique Pelle, closes https://github.com/vim/vim/issues/1492)
author Christian Brabandt <cb@256bit.org>
date Thu, 23 Feb 2017 18:15:04 +0100
parents 503b28f0a974
children 835604f3c37a
line wrap: on
line diff
--- 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;
 	}
 
 	/*