Fix zfs_sysfs_live test failure
The ZTS zfs_sysfs_live test fails occasionally due to an uninitialized string on an error path. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Don Brady <don.brady@delphix.com> Closes #7869
This commit is contained in:
parent
0238a9755b
commit
e7b677aa5d
|
@ -294,9 +294,11 @@ zprop_sysfs_show(const char *attr_name, const zprop_desc_t *property,
|
||||||
property->pd_strdefault : "";
|
property->pd_strdefault : "";
|
||||||
break;
|
break;
|
||||||
case PROP_TYPE_INDEX:
|
case PROP_TYPE_INDEX:
|
||||||
(void) zprop_index_to_string(property->pd_propnum,
|
if (zprop_index_to_string(property->pd_propnum,
|
||||||
property->pd_numdefault, &show_str,
|
property->pd_numdefault, &show_str,
|
||||||
property->pd_types);
|
property->pd_types) != 0) {
|
||||||
|
show_str = "";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return (0);
|
return (0);
|
||||||
|
|
Loading…
Reference in New Issue