comparison 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
comparison
equal deleted inserted replaced
10937:ae3832cc9a28 10938:3b82ab325d59
8179 */ 8179 */
8180 else 8180 else
8181 { 8181 {
8182 if (try_match && *look == keytyped) 8182 if (try_match && *look == keytyped)
8183 return TRUE; 8183 return TRUE;
8184 ++look; 8184 if (*look != NUL)
8185 ++look;
8185 } 8186 }
8186 8187
8187 /* 8188 /*
8188 * Skip over ", ". 8189 * Skip over ", ".
8189 */ 8190 */