|
Description
|
In get_one_filesystem(), we fail to zfs_close() the handle, leaking
it and all its associated memory:
static int
get_one_filesystem(zfs_handle_t *zhp, void *data)
{
get_all_cbdata_t *cbp = data;
...
return (zfs_iter_filesystems(zhp, get_one_filesystem, data));
}
|