mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 17:30:53 +07:00
[PATCH] Remove unnecessary check in fs/reiserfs/inode.c
Since all callers dereference dir, we dont need this check. Coverity id #337. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Cc: Jeff Mahoney <jeffm@suse.com> Cc: <reiserfs-dev@namesys.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
add216608a
commit
585b7747d6
@ -1780,7 +1780,7 @@ int reiserfs_new_inode(struct reiserfs_transaction_handle *th,
|
||||
err = -EDQUOT;
|
||||
goto out_end_trans;
|
||||
}
|
||||
if (!dir || !dir->i_nlink) {
|
||||
if (!dir->i_nlink) {
|
||||
err = -EPERM;
|
||||
goto out_bad_inode;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user