dect
/
linux-2.6
Archived
13
0
Fork 0

[SELINUX]: Fix bug in security_sid_mls_copy

The following fixes a bug where random mem is being tampered with in the
non-mls case; encountered by Jashua Brindle on a gentoo box.

Signed-off-by: Venkat Yekkirala <vyekkirala@TrustedCS.com>
Acked-by:  Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
Venkat Yekkirala 2006-09-19 10:24:19 -07:00 committed by David S. Miller
parent 1616436601
commit 4eb327b517
1 changed files with 1 additions and 1 deletions

View File

@ -1841,7 +1841,7 @@ int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid)
u32 len;
int rc = 0;
if (!ss_initialized) {
if (!ss_initialized || !selinux_mls_enabled) {
*new_sid = sid;
goto out;
}