1
0
Fork 0

btrfs: remove redundant check on ret and goto

The check for a non-zero ret is redundant as the goto will jump to
the very next statement anyway.  Remove this extraneous code.

Detected by CoverityScan, CID#1463784 ("Identical code for different
branches")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David Sterba <dsterba@suse.com>
hifive-unleashed-5.1
Colin Ian King 2018-01-12 16:52:58 +00:00 committed by David Sterba
parent 7806c6eb15
commit 7a61f88088
1 changed files with 1 additions and 2 deletions

View File

@ -278,8 +278,7 @@ int btrfs_run_sanity_tests(void)
}
}
ret = btrfs_test_extent_map();
if (ret)
goto out;
out:
btrfs_destroy_test_fs();
return ret;