From: Wei Yongjun Date: Tue, 12 Feb 2019 07:58:31 +0000 (+0000) Subject: LSM: fix return value check in safesetid_init_securityfs() X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e7a44cfd639945a0dec749f896adc1d340c2a6aa;p=openwrt%2Fstaging%2Fblogic.git LSM: fix return value check in safesetid_init_securityfs() In case of error, the function securityfs_create_dir() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Fixes: aeca4e2ca65c ("LSM: add SafeSetID module that gates setid calls") Signed-off-by: Wei Yongjun Acked-by: Kees Cook Signed-off-by: James Morris --- diff --git a/security/safesetid/securityfs.c b/security/safesetid/securityfs.c index 61be4ee459cc..2c6c829be044 100644 --- a/security/safesetid/securityfs.c +++ b/security/safesetid/securityfs.c @@ -167,7 +167,7 @@ static int __init safesetid_init_securityfs(void) return 0; safesetid_policy_dir = securityfs_create_dir("safesetid", NULL); - if (!safesetid_policy_dir) { + if (IS_ERR(safesetid_policy_dir)) { ret = PTR_ERR(safesetid_policy_dir); goto error; }