Prevent gcc uninit compiler warning in zfs_range_unlock_reader().
This commit is contained in:
parent
217998d1a3
commit
3191b962f6
|
@ -460,7 +460,7 @@ static void
|
|||
zfs_range_unlock_reader(znode_t *zp, rl_t *remove)
|
||||
{
|
||||
avl_tree_t *tree = &zp->z_range_avl;
|
||||
rl_t *rl, *next;
|
||||
rl_t *rl, *next = NULL;
|
||||
uint64_t len;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue