mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
zpool_load_compat() should create strings of length ZFS_MAXPROPLEN
Otherwise, `strlcat()` can overflow them. Coverity found this. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Neal Gompa <ngompa@datto.com> Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu> Closes #13866
This commit is contained in:
parent
e5327e7f97
commit
710fd1ded6
@ -4684,8 +4684,8 @@ zpool_load_compat(const char *compat, boolean_t *features, char *report,
|
||||
for (uint_t i = 0; i < SPA_FEATURES; i++)
|
||||
features[i] = B_TRUE;
|
||||
|
||||
char err_badfile[1024] = "";
|
||||
char err_badtoken[1024] = "";
|
||||
char err_badfile[ZFS_MAXPROPLEN] = "";
|
||||
char err_badtoken[ZFS_MAXPROPLEN] = "";
|
||||
|
||||
/*
|
||||
* We ignore errors from the directory open()
|
||||
|
Loading…
Reference in New Issue
Block a user