diff options
author | Ondrej Mosnacek <omosnace@redhat.com> | 2020-02-03 14:27:20 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-02-12 05:39:41 +0300 |
commit | 60abd3181db29ea81742106cc0ac2e27fd05b418 (patch) | |
tree | 45792720462b0de5a5ef3eaa7a1269daaae95470 /security/selinux/ss/policydb.c | |
parent | 8d269a8e2a8f0bca89022f4ec98de460acb90365 (diff) | |
download | linux-60abd3181db29ea81742106cc0ac2e27fd05b418.tar.xz |
selinux: convert cond_list to array
Since it is fixed-size after allocation and we know the size beforehand,
using a plain old array is simpler and more efficient.
While there, also fix signedness of some related variables/parameters.
Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss/policydb.c')
-rw-r--r-- | security/selinux/ss/policydb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c index 2aa7f2e1a8e7..8ac9b9ffc83c 100644 --- a/security/selinux/ss/policydb.c +++ b/security/selinux/ss/policydb.c @@ -3483,7 +3483,7 @@ int policydb_write(struct policydb *p, void *fp) if (rc) return rc; - rc = cond_write_list(p, p->cond_list, fp); + rc = cond_write_list(p, fp); if (rc) return rc; |