apparmor: fix sparse warnings
Fix a couple of warning reported by sparse Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
parent
41d1b3e868
commit
53fe8b9961
2 changed files with 11 additions and 11 deletions
|
|
@ -909,8 +909,11 @@ static int __init apparmor_init(void)
|
|||
|
||||
error = register_security(&apparmor_ops);
|
||||
if (error) {
|
||||
struct cred *cred = (struct cred *)current->real_cred;
|
||||
aa_free_task_context(cred->security);
|
||||
cred->security = NULL;
|
||||
AA_ERROR("Unable to register AppArmor\n");
|
||||
goto set_init_cxt_out;
|
||||
goto register_security_out;
|
||||
}
|
||||
|
||||
/* Report that AppArmor successfully initialized */
|
||||
|
|
@ -924,9 +927,6 @@ static int __init apparmor_init(void)
|
|||
|
||||
return error;
|
||||
|
||||
set_init_cxt_out:
|
||||
aa_free_task_context(current->real_cred->security);
|
||||
|
||||
register_security_out:
|
||||
aa_free_root_ns();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue