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 quiet;
capabilities(void) { allow = audit = deny = quiet; }
capabilities(void) { allow = audit = deny = quiet = 0; }
void dump()
{