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: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
166ae5a418
commit
7fb18a0664
|
@ -717,8 +717,8 @@ static int scrub_fixup_readpage(u64 inum, u64 offset, u64 root, void *fixup_ctx)
|
|||
out:
|
||||
if (page)
|
||||
put_page(page);
|
||||
if (inode)
|
||||
iput(inode);
|
||||
|
||||
iput(inode);
|
||||
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue