zfs_get_enclosure_sysfs_path(): don't free undefined pointer
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #11993
This commit is contained in:
parent
b847e538ef
commit
cc6ea631ce
|
@ -207,9 +207,10 @@ zfs_get_enclosure_sysfs_path(const char *dev_name)
|
||||||
if (strstr(ep->d_name, "enclosure_device") == NULL)
|
if (strstr(ep->d_name, "enclosure_device") == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (asprintf(&tmp2, "%s/%s", tmp1, ep->d_name) == -1 ||
|
if (asprintf(&tmp2, "%s/%s", tmp1, ep->d_name) == -1) {
|
||||||
tmp2 == NULL)
|
tmp2 = NULL;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
size = readlink(tmp2, buf, sizeof (buf));
|
size = readlink(tmp2, buf, sizeof (buf));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue