aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorJohn Johansen <john.johansen@canonical.com>2018-07-20 03:25:25 -0700
committerJohn Johansen <john.johansen@canonical.com>2018-07-20 03:25:25 -0700
commit24b87a16fee0ebd49b66e8523186ace7ea09ad12 (patch)
tree60b9bcaf2fe6424453824d30987e3295bb53556f /security
parentapparmor: Fully initialize aa_perms struct when answering userspace query (diff)
downloadlinux-dev-24b87a16fee0ebd49b66e8523186ace7ea09ad12.tar.xz
linux-dev-24b87a16fee0ebd49b66e8523186ace7ea09ad12.zip
apparmor: Fix failure to audit context info in build_change_hat
Cleans up clang warning: warning: variable 'info' set but not used [-Wunused-but-set-variable] Fixes: 89dbf1962aa63 ("apparmor: move change_hat mediation to using labels") Reported-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security')
-rw-r--r--security/apparmor/domain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/domain.c b/security/apparmor/domain.c
index 098d546d8253..08c88de0ffda 100644
--- a/security/apparmor/domain.c
+++ b/security/apparmor/domain.c
@@ -1036,7 +1036,7 @@ static struct aa_label *build_change_hat(struct aa_profile *profile,
audit:
aa_audit_file(profile, &nullperms, OP_CHANGE_HAT, AA_MAY_CHANGEHAT,
name, hat ? hat->base.hname : NULL,
- hat ? &hat->label : NULL, GLOBAL_ROOT_UID, NULL,
+ hat ? &hat->label : NULL, GLOBAL_ROOT_UID, info,
error);
if (!hat || (error && error != -ENOENT))
return ERR_PTR(error);