mirror of
https://github.com/neovim/neovim.git
synced 2025-11-30 22:20:42 +00:00
vim-patch:8.2.5126: substitute may overrun destination buffer
Problem: Substitute may overrun destination buffer.
Solution: Disallow switching buffers in a substitute expression.
d6211a52ab
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -5249,9 +5249,9 @@ void do_exedit(exarg_T *eap, win_T *old_curwin)
|
||||
old_curwin == NULL ? curwin : NULL);
|
||||
} else if ((eap->cmdidx != CMD_split && eap->cmdidx != CMD_vsplit)
|
||||
|| *eap->arg != NUL) {
|
||||
// Can't edit another file when "curbuf->b_ro_locked" is set. Only ":edit"
|
||||
// can bring us here, others are stopped earlier.
|
||||
if (*eap->arg != NUL && curbuf_locked()) {
|
||||
// Can't edit another file when "textlock" or "curbuf->b_ro_locked" is set.
|
||||
// Only ":edit" or ":script" can bring us here, others are stopped earlier.
|
||||
if (*eap->arg != NUL && text_or_buf_locked()) {
|
||||
return;
|
||||
}
|
||||
n = readonlymode;
|
||||
|
||||
Reference in New Issue
Block a user