forked from aniani/vim
updated for version 7.3.160
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
This commit is contained in:
@@ -5096,7 +5096,9 @@ check_more(message, forceit)
|
||||
char_u buff[IOSIZE];
|
||||
|
||||
if (n == 1)
|
||||
STRCPY(buff, _("1 more file to edit. Quit anyway?"));
|
||||
vim_strncpy(buff,
|
||||
(char_u *)_("1 more file to edit. Quit anyway?"),
|
||||
IOSIZE - 1);
|
||||
else
|
||||
vim_snprintf((char *)buff, IOSIZE,
|
||||
_("%d more files to edit. Quit anyway?"), n);
|
||||
|
Reference in New Issue
Block a user