mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
Capability entries in the profile are not being correctly initialized to 0
Signed-off-by: John Johansen <john.johansen@canonical.com> Acked-by: Steve Beattie <steve@nxnw.org>
This commit is contained in:
parent
429f077679
commit
6744feeb76
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ struct capabilities {
|
|||
uint64_t deny;
|
||||
uint64_t quiet;
|
||||
|
||||
capabilities(void) { allow = audit = deny = quiet; }
|
||||
capabilities(void) { allow = audit = deny = quiet = 0; }
|
||||
|
||||
void dump()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue