Commit 7fb18a06 authored by Tobias Klauser's avatar Tobias Klauser Committed by Chris Mason

btrfs: Remove unnecessary check for NULL

iput() already checks for the inode being NULL, thus it's unnecessary to
check before calling.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 166ae5a4
...@@ -717,7 +717,7 @@ static int scrub_fixup_readpage(u64 inum, u64 offset, u64 root, void *fixup_ctx) ...@@ -717,7 +717,7 @@ static int scrub_fixup_readpage(u64 inum, u64 offset, u64 root, void *fixup_ctx)
out: out:
if (page) if (page)
put_page(page); put_page(page);
if (inode)
iput(inode); iput(inode);
if (ret < 0) if (ret < 0)
......
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