Skip to content

Commit

Permalink
apparmor: fix checkpatch error in Parse secmark policy
Browse files Browse the repository at this point in the history
Fix missed spacing error reported by checkpatch for
9caafbe ("Parse secmark policy")

Signed-off-by: John Johansen <john.johansen@canonical.com>
  • Loading branch information
John Johansen committed Nov 2, 2018
1 parent e1af477 commit 76af016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/apparmor/policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ void aa_free_profile(struct aa_profile *profile)
for (i = 0; i < profile->xattr_count; i++)
kzfree(profile->xattrs[i]);
kzfree(profile->xattrs);
for (i=0; i < profile->secmark_count; i++)
for (i = 0; i < profile->secmark_count; i++)
kzfree(profile->secmark[i].label);
kzfree(profile->secmark);
kzfree(profile->dirname);
Expand Down

0 comments on commit 76af016

Please sign in to comment.