lsm: Use IS_ERR_OR_NULL() helper function
Use the IS_ERR_OR_NULL() helper instead of open-coding a NULL and an error pointer checks to simplify the code and improve readability. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
d6bd12e80b
commit
ce4a60592e
@ -296,7 +296,7 @@ void securityfs_remove(struct dentry *dentry)
|
|||||||
{
|
{
|
||||||
struct inode *dir;
|
struct inode *dir;
|
||||||
|
|
||||||
if (!dentry || IS_ERR(dentry))
|
if (IS_ERR_OR_NULL(dentry))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dir = d_inode(dentry->d_parent);
|
dir = d_inode(dentry->d_parent);
|
||||||
|
Loading…
Reference in New Issue
Block a user