bsdinstall(8): Sprinkle a snprintf to fixed size buffer
Use a snprintf to write an environment variable to a fixed-size buffer to avoid stack overflow. Reported by: Coverity (CWE-120) CID: 1238926 Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
8e4052568d
commit
a8899611ac
@ -146,7 +146,7 @@ newfs_command(const char *fstype, char *command, int use_default)
|
||||
strcpy(command, "zpool create -f -m none ");
|
||||
if (getenv("BSDINSTALL_TMPBOOT") != NULL) {
|
||||
char zfsboot_path[MAXPATHLEN];
|
||||
sprintf(zfsboot_path, "%s/zfs",
|
||||
snprintf(zfsboot_path, sizeof(zfsboot_path), "%s/zfs",
|
||||
getenv("BSDINSTALL_TMPBOOT"));
|
||||
mkdir(zfsboot_path, S_IRWXU | S_IRGRP | S_IXGRP |
|
||||
S_IROTH | S_IXOTH);
|
||||
|
Loading…
Reference in New Issue
Block a user