[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100310205348.GA3419@localhost.localdomain>
Date: Thu, 11 Mar 2010 04:53:48 +0800
From: wzt.wzt@...il.com
To: linux-kernel@...r.kernel.org
Cc: linux-security-module@...r.kernel.org, sds@...ho.nsa.gov,
jmorris@...ei.org
Subject: [PATCH] Security: Fix return value of avc_has_perm_noaudit() in security/selinux/avc.c
avc_has_perm_noaudit() is not check the return value of avc_update_node, avc_update_node() delcared as int.
Signed-off-by: Zhitong Wang <zhitong.wangzt@...baba-inc.com>
---
security/selinux/avc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/security/selinux/avc.c b/security/selinux/avc.c
index f2dde26..8bbce96 100644
--- a/security/selinux/avc.c
+++ b/security/selinux/avc.c
@@ -763,7 +763,7 @@ int avc_has_perm_noaudit(u32 ssid, u32 tsid,
if (flags & AVC_STRICT)
rc = -EACCES;
else if (!selinux_enforcing || (avd->flags & AVD_FLAGS_PERMISSIVE))
- avc_update_node(AVC_CALLBACK_GRANT, requested, ssid,
+ rc = avc_update_node(AVC_CALLBACK_GRANT, requested, ssid,
tsid, tclass, avd->seqno);
else
rc = -EACCES;
--
1.6.5.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists