diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-14 21:26:32 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-22 14:28:02 -0400 |
commit | a8b75f663ee825ab9d75839482bb12198faee70d (patch) | |
tree | 97e5f172d2516a9f8e678ea3297d81a6757b0fd0 | |
parent | 500e2ab6c39b62c4b16e9964ed8990f091a47ddb (diff) |
cifs_lookup(): cifs_get_inode_...() never returns 0 with *inode left NULL
not since 2004...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/cifs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index 81ba6e0d88d8..ecbf36c459ea 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -812,7 +812,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, parent_dir_inode->i_sb, xid, NULL); } - if ((rc == 0) && (newInode != NULL)) { + if (rc == 0) { d_add(direntry, newInode); /* since paths are not looked up by component - the parent directories are presumed to be good here */ |