mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
cppcheck: zpool_main.c possible null pointer dereference
Explicitly check for NULL to satisfy cppcheck that "val" can never be NULL when passed to printf(). This looks like a false positive since is_blank_str() can never take the false conditional branch when passed a NULL. But there's no harm in adding the extra check. Reviewed-by: Ryan Moeller <ryan@ixsystems.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #11508
This commit is contained in:
parent
62d4287f27
commit
7454d2bb8d
@ -2010,7 +2010,7 @@ zpool_print_cmd(vdev_cmd_data_list_t *vcdl, const char *pool, char *path)
|
||||
* Mark empty values with dashes to make output
|
||||
* awk-able.
|
||||
*/
|
||||
if (is_blank_str(val))
|
||||
if (val == NULL || is_blank_str(val))
|
||||
val = "-";
|
||||
|
||||
printf("%*s", vcdl->uniq_cols_width[j], val);
|
||||
|
Loading…
Reference in New Issue
Block a user