Commit 9ec70984 authored by Anand Jain's avatar Anand Jain Committed by Jiri Slaby

Btrfs: add missing brelse when superblock checksum fails

commit b2acdddf upstream.

Looks like oversight, call brelse() when checksum fails. Further down the
code, in the non error path, we do call brelse() and so we don't see
brelse() in the goto error paths.
Signed-off-by: default avatarAnand Jain <anand.jain@oracle.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
parent 40c0155d
......@@ -2340,6 +2340,7 @@ int open_ctree(struct super_block *sb,
bh = btrfs_read_dev_super(fs_devices->latest_bdev);
if (!bh) {
err = -EINVAL;
brelse(bh);
goto fail_alloc;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment