mirror of
https://github.com/neovim/neovim.git
synced 2026-05-03 12:35:00 +00:00
option: fix off-by-one error when handling &directory
a8e18d9 introduced an off-by-one error that caused the last character of
&directory to be ignored. This commit is a straightforward fix for that error.
fixes #3519
This commit is contained in:
@@ -3262,8 +3262,8 @@ static char *findswapname(buf_T *buf, char **dirp, char *old_fname,
|
||||
* Isolate a directory name from *dirp and put it in dir_name.
|
||||
* First allocate some memory to put the directory name in.
|
||||
*/
|
||||
const size_t dir_len = strlen(*dirp);
|
||||
dir_name = xmalloc(dir_len + 1);
|
||||
const size_t dir_len = strlen(*dirp) + 1;
|
||||
dir_name = xmalloc(dir_len);
|
||||
(void)copy_option_part((char_u **) dirp, (char_u *) dir_name, dir_len, ",");
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user