summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGoldwyn Rodrigues <rgoldwyn@suse.com>2016-10-24 10:18:14 -0500
committerDavid Sterba <dsterba@suse.com>2016-10-25 14:31:06 +0200
commita7ec18a8640338fd9b4fd2424012f78f31fcef38 (patch)
treef21c5f4da134f74624c470a8695d583faf21b066
parentffb1b847bd554e45c00212280847b9f2059a87f3 (diff)
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>
-rw-r--r--cmds-check.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds-check.c b/cmds-check.c
index 907d60c5..7718c7be 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -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.