Fix coverity defects: CID 147602 147604

coverity scan CID:147604, Type: Resource leak.
coverity scan CID:147602, Type: Resource leak.
reason: safe_malloc calcvs, goto children but not free calcvs.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: cao.xuewen <cao.xuewen@zte.com.cn>
Closes #5155
This commit is contained in:
cao 2016-09-24 06:43:46 +08:00 committed by Brian Behlendorf
parent 7571033285
commit 92bc927868

View File

@ -3382,10 +3382,12 @@ print_vdev_stats(zpool_handle_t *zhp, const char *name, nvlist_t *oldnv,
if (!(cb->cb_flags & IOS_ANYHISTO_M))
printf("\n");
free(calcvs);
ret++;
children:
free(calcvs);
if (!cb->cb_verbose)
return (ret);
@ -3734,14 +3736,16 @@ static int
is_vdev_cb(zpool_handle_t *zhp, nvlist_t *nv, void *cb_data)
{
iostat_cbdata_t *cb = cb_data;
char *name;
char *name = NULL;
int ret = 0;
name = zpool_vdev_name(g_zfs, zhp, nv, cb->cb_name_flags);
if (strcmp(name, cb->cb_vdev_names[0]) == 0)
return (1); /* match */
ret = 1; /* match */
free(name);
return (0);
return (ret);
}
/*