mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 16:24:21 +08:00
btrfs-progs: Initialize ret to suppress compiler warning
The path that leaves ret unintialized goes through the second if block and requires dback->found_ref to be 0. Quick search leads to several places where it's set according to found items so we won't reach the for loop with found_ref 0. Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com> [ updated changelog ] Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
617af9e92e
commit
11315213aa
@ -8041,7 +8041,7 @@ static int record_extent(struct btrfs_trans_handle *trans,
|
||||
struct extent_backref *back,
|
||||
int allocated, u64 flags)
|
||||
{
|
||||
int ret;
|
||||
int ret = 0;
|
||||
struct btrfs_root *extent_root = info->extent_root;
|
||||
struct extent_buffer *leaf;
|
||||
struct btrfs_key ins_key;
|
||||
|
@ -1575,7 +1575,7 @@ out:
|
||||
|
||||
int repair_qgroups(struct btrfs_fs_info *info, int *repaired)
|
||||
{
|
||||
int ret;
|
||||
int ret = 0;
|
||||
struct qgroup_count *count, *tmpcount;
|
||||
|
||||
*repaired = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user