mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-31 14:25:52 +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:
@@ -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()
|
||||
{
|
||||
|
Reference in New Issue
Block a user