]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: remove redundant check on ret being non-zero
authorColin Ian King <colin.king@canonical.com>
Tue, 15 Aug 2017 07:51:02 +0000 (08:51 +0100)
committerDavid Sterba <dsterba@suse.com>
Fri, 18 Aug 2017 14:36:29 +0000 (16:36 +0200)
commit1a61255a1feaea5b931637bf6fbeafeb1e54abff
treea29ebc58ba2f59ea56aa7fa7e033175937b0131c
parent65e22966a02a72f9bce29930b3d1bd18eef32069
btrfs: remove redundant check on ret being non-zero

The error return variable ret is initialized to zero and then is
checked to see if it is non-zero in the if-block that follows it.
It is therefore impossible for ret to be non-zero after the if-block
hence the check is redundant and can be removed.

Detected by CoverityScan, CID#1021040 ("Logically dead code")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/tree-log.c