shell/main_edit.c: Fix string truncation warning

Using strlcpy() instead of strncpy():

1) Prevents the compiler warnings
2) Ensures, the string is NUL terminated.
3) Avoids that strncpy() unnecessary fills the unused part of the buffer with
   0 bytes.

(Note that realpath() also returns NULL if the file does not exist - that
happens always if someone creates a new file with the editor of the shell.)
This commit is contained in:
Frank Kühndel
2020-10-12 18:50:24 +02:00
committed by Sebastian Huber
parent b03c103dbd
commit 1dbd1079a5

View File

@@ -283,11 +283,13 @@ static void delete_editor(struct editor *ed) {
}
static struct editor *find_editor(struct env *env, char *filename) {
char fn[PATH_MAX];
char fnbuf[PATH_MAX];
char *fn = fnbuf;
struct editor *ed = env->current;
struct editor *start = ed;
if (!realpath(filename, fn)) strncpy(fn, filename, FILENAME_MAX);
/* Note: When realpath() == NULL, usually the file doesn't exist */
if (!realpath(filename, fn)) { fn = filename; }
do {
if (strcmp(fn, ed->filename) == 0) return ed;
@@ -298,7 +300,7 @@ static struct editor *find_editor(struct env *env, char *filename) {
static int new_file(struct editor *ed, char *filename) {
if (*filename) {
strncpy(ed->filename, filename, FILENAME_MAX);
strlcpy(ed->filename, filename, sizeof(ed->filename));
} else {
sprintf(ed->filename, "Untitled-%d", ++ed->env->untitled);
ed->newfile = 1;
@@ -1776,8 +1778,8 @@ static void save_editor(struct editor *ed) {
return;
}
}
strncpy(
ed->filename, (const char*) ed->env->linebuf, FILENAME_MAX);
strlcpy(
ed->filename, (const char*) ed->env->linebuf, sizeof(ed->filename));
ed->newfile = 0;
}