mirror of
https://github.com/neovim/neovim.git
synced 2025-11-30 14:10:50 +00:00
vim-patch:9.0.0360: crash when invalid line number on :for is ignored
Problem: Crash when invalid line number on :for is ignored.
Solution: Do not check breakpoint for non-existing line.
35d21c6830
Test does not fail without the fix in Nvim as Nvim uses 0 when line
number overflows. If it is changed to MAXLNUM then the test does fail
without the fix, but using 0 seems better as E481 is still given.
This commit is contained in:
@@ -642,7 +642,7 @@ int do_cmdline(char *cmdline, LineGetter fgetline, void *cookie, int flags)
|
||||
|
||||
// Check for the next breakpoint at or after the ":while"
|
||||
// or ":for".
|
||||
if (breakpoint != NULL) {
|
||||
if (breakpoint != NULL && lines_ga.ga_len > current_line) {
|
||||
*breakpoint = dbg_find_breakpoint(getline_equal(fgetline, cookie, getsourceline), fname,
|
||||
((wcmd_T *)lines_ga.ga_data)[current_line].lnum - 1);
|
||||
*dbg_tick = debug_tick;
|
||||
|
||||
Reference in New Issue
Block a user