2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-09-03 15:55:46 +00: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:
John Johansen
2014-02-27 13:53:28 -08:00
parent 429f077679
commit 6744feeb76

View File

@@ -82,7 +82,7 @@ struct capabilities {
uint64_t deny; uint64_t deny;
uint64_t quiet; uint64_t quiet;
capabilities(void) { allow = audit = deny = quiet; } capabilities(void) { allow = audit = deny = quiet = 0; }
void dump() void dump()
{ {