btrfs-progs: check: release path after usage

While performing an fsck, an assertion failure occurs because of reusing path in a loop.
ctree.c:1112: btrfs_search_slot: Warning: assertion `p->nodes[0] != NULL` failed, value 0

Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
master
Goldwyn Rodrigues 2016-10-24 10:18:14 -05:00 committed by David Sterba
parent ffb1b847bd
commit a7ec18a864
1 changed files with 1 additions and 0 deletions

View File

@ -7544,6 +7544,7 @@ static int record_orphan_data_extents(struct btrfs_fs_info *fs_info,
key.offset = dback->offset;
ret = btrfs_search_slot(NULL, dest_root, &key, path, 0, 0);
btrfs_release_path(path);
/*
* For ret < 0, it's OK since the fs-tree may be corrupted,
* we need to record it for inode/file extent rebuild.