mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
Fix: strcat() on overlapping string. (Dominique Pelle)
This commit is contained in:
@@ -9555,7 +9555,7 @@ uniquefy_paths(gap, pattern)
|
|||||||
{
|
{
|
||||||
STRCPY(path, ".");
|
STRCPY(path, ".");
|
||||||
add_pathsep(path);
|
add_pathsep(path);
|
||||||
STRCAT(path, short_name);
|
STRMOVE(path + STRLEN(path), short_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ui_breakcheck();
|
ui_breakcheck();
|
||||||
|
Reference in New Issue
Block a user