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:
Hongbo Li 2024-08-28 20:24:50 +08:00 committed by Paul Moore
parent d6bd12e80b
commit ce4a60592e

View File

@ -296,7 +296,7 @@ void securityfs_remove(struct dentry *dentry)
{
struct inode *dir;
if (!dentry || IS_ERR(dentry))
if (IS_ERR_OR_NULL(dentry))
return;
dir = d_inode(dentry->d_parent);