Commit b5d72cdc authored by Mike Marshall's avatar Mike Marshall

orangefs: don't let orangefs_iget return NULL.

Suggested by Dan Carpenter.
Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
parent 56249998
......@@ -405,7 +405,11 @@ struct inode *orangefs_iget(struct super_block *sb,
orangefs_test_inode,
orangefs_set_inode,
ref);
if (!inode || !(inode->i_state & I_NEW))
if (!inode)
return ERR_PTR(-ENOMEM);
if (!(inode->i_state & I_NEW))
return inode;
error = orangefs_inode_getattr(inode, 1, 1, STATX_ALL);
......
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