Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-05-27 18:11:52 +0400
committerMatt Kraai <kraai@debian.org>2001-05-27 18:11:52 +0400
commit6e9e136fcbd1883cf8a29d87b3825398587a3860 (patch)
tree7a46a06c0f29438cd2ad867e5b8de07afe92b88a /sed.c
parent4f6aea807b0cd411cbc6f9d3b79e8583d6bd532b (diff)
Use safe_strncpy.
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sed.c b/sed.c
index 47fb63712..95be01822 100644
--- a/sed.c
+++ b/sed.c
@@ -388,9 +388,8 @@ static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
/* the first non-whitespace we get is a filename. the filename ends when we
* hit a normal sed command terminator or end of string */
filenamelen = strcspn(&filecmdstr[idx], "; \n\r\t\v\0");
- sed_cmd->filename = xmalloc(sizeof(char) * filenamelen + 1);
- strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen);
- sed_cmd->filename[filenamelen] = 0;
+ sed_cmd->filename = xmalloc(filenamelen + 1);
+ safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
return idx + filenamelen;
}