ed: Don't use strlcpy()

All the buffers related to files have FILENAME_MAX size, so it is impossible
to have any buffer overrun.
This commit is contained in:
Roberto E. Vargas Caballero 2017-01-10 08:46:48 +01:00
parent 78bfd8978e
commit b95c8ed79e
1 changed files with 2 additions and 3 deletions

5
ed.c
View File

@ -611,7 +611,7 @@ dowrite(const char *fname, int trunc)
curln = line2;
if (fclose(fp))
error("input/output error");
if (strlcpy(savfname, fname, sizeof(savfname)) >= sizeof(savfname))
if (strcpy(savfname, fname, sizeof(savfname)) >= sizeof(savfname))
error("file name too long");
modflag = 0;
curln = line;
@ -743,8 +743,7 @@ getfname(char comm)
} else {
*bp = '\0';
if (savfname[0] == '\0' || comm == 'e' || comm == 'f')
if (strlcpy(savfname, fname, sizeof(savfname)) >= sizeof(savfname))
error("file name too long");
strcpy(savfname, fname);
return fname;
}