mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-27 23:10:30 +00:00
libsepol/cil: Set class field to NULL when resetting struct cil_classperms
The class field of a struct cil_classperms points to the class looked up in the symbol table, so that field should be set to NULL when the cil_classperms is reset. Set the class field to NULL when resetting the struct cil_classperms. Signed-off-by: James Carter <jwcart2@gmail.com>
This commit is contained in:
parent
c49a8ea095
commit
a7a80ef51b
@ -45,6 +45,7 @@ static inline void cil_reset_classperms(struct cil_classperms *cp)
|
||||
return;
|
||||
}
|
||||
|
||||
cp->class = NULL;
|
||||
cil_list_destroy(&cp->perms, CIL_FALSE);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user