Commit ce4a6059 authored by Hongbo Li's avatar Hongbo Li Committed by Paul Moore
Browse files

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: default avatarHongbo Li <lihongbo22@huawei.com>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent d6bd12e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);