mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 18:17:09 +00:00
parser: fix chfa quivalence class handling
The chfa equivalence class shouldn't be a reference. Its needs to actually exist and be part of the class during later method calls. As a reference it leads to bad references when used later. Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
parent
be9c0937dc
commit
f8117a384f
@ -53,7 +53,7 @@ class CHFA {
|
|||||||
DefaultBase default_base;
|
DefaultBase default_base;
|
||||||
NextCheck next_check;
|
NextCheck next_check;
|
||||||
map<const State *, size_t> num;
|
map<const State *, size_t> num;
|
||||||
map<transchar, transchar> &eq;
|
map<transchar, transchar> eq;
|
||||||
transchar max_eq;
|
transchar max_eq;
|
||||||
ssize_t first_free;
|
ssize_t first_free;
|
||||||
unsigned int chfaflags;
|
unsigned int chfaflags;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user