mirror of
https://github.com/falcosecurity/falco.git
synced 2025-08-19 22:58:40 +00:00
chore(userspace/engine): initialize bool member for falco_rule
Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
This commit is contained in:
parent
3af03998eb
commit
97d88d12f1
@ -77,7 +77,11 @@ struct falco_macro {
|
|||||||
The rule ID must be unique across all the rules loaded in the engine.
|
The rule ID must be unique across all the rules loaded in the engine.
|
||||||
*/
|
*/
|
||||||
struct falco_rule {
|
struct falco_rule {
|
||||||
falco_rule(): id(0), priority(falco_common::PRIORITY_DEBUG) {}
|
falco_rule():
|
||||||
|
id(0),
|
||||||
|
priority(falco_common::PRIORITY_DEBUG),
|
||||||
|
capture(false),
|
||||||
|
capture_duration(0) {}
|
||||||
falco_rule(falco_rule&&) = default;
|
falco_rule(falco_rule&&) = default;
|
||||||
falco_rule& operator=(falco_rule&&) = default;
|
falco_rule& operator=(falco_rule&&) = default;
|
||||||
falco_rule(const falco_rule&) = default;
|
falco_rule(const falco_rule&) = default;
|
||||||
|
Loading…
Reference in New Issue
Block a user