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:
@@ -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()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user