comparison src/vim9execute.c @ 26406:fcc57227e99b v8.2.3734

patch 8.2.3734: Vim9: crash when no pattern match found Commit: https://github.com/vim/vim/commit/01a4dcbceefa99696bd1ef8631c3f7ce9f6e0cc2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 4 13:15:10 2021 +0000 patch 8.2.3734: Vim9: crash when no pattern match found Problem: Vim9: crash when no pattern match found. Solution: Check for error.
author Bram Moolenaar <Bram@vim.org>
date Sat, 04 Dec 2021 14:30:03 +0100
parents a926ccd92ae1
children 42471d3ac079
comparison
equal deleted inserted replaced
26405:bbe29c78de50 26406:fcc57227e99b
1783 CLEAR_FIELD(ea); 1783 CLEAR_FIELD(ea);
1784 ea.cmdidx = CMD_SIZE; 1784 ea.cmdidx = CMD_SIZE;
1785 ea.addr_type = ADDR_LINES; 1785 ea.addr_type = ADDR_LINES;
1786 ea.cmd = iptr->isn_arg.string; 1786 ea.cmd = iptr->isn_arg.string;
1787 parse_cmd_address(&ea, &error, FALSE); 1787 parse_cmd_address(&ea, &error, FALSE);
1788 if (ea.cmd == NULL)
1789 goto on_error;
1788 if (error == NULL) 1790 if (error == NULL)
1789 error = ex_range_without_command(&ea); 1791 error = ex_range_without_command(&ea);
1790 if (error != NULL) 1792 if (error != NULL)
1791 { 1793 {
1792 SOURCING_LNUM = iptr->isn_lnum; 1794 SOURCING_LNUM = iptr->isn_lnum;