Skip to content

Commit

Permalink
[PATCH] selinux: more ARRAY_SIZE cleanups
Browse files Browse the repository at this point in the history
Further ARRAY_SIZE cleanups under security/selinux.

Signed-off-by: Tobias Klauser <[email protected]>
Signed-off-by: Stephen Smalley <[email protected]>
Acked-by: James Morris <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Tobias Klauser authored and Linus Torvalds committed Jan 6, 2006
1 parent 6e20a64 commit 32725ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion security/selinux/ss/avtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ int avtab_read_item(void *fp, u32 vers, struct avtab *a,
return -1;
}

for (i = 0; i < sizeof(spec_order)/sizeof(u16); i++) {
for (i = 0; i < ARRAY_SIZE(spec_order); i++) {
if (val & spec_order[i]) {
key.specified = spec_order[i] | enabled;
datum.data = le32_to_cpu(buf32[items++]);
Expand Down
2 changes: 1 addition & 1 deletion security/selinux/ss/policydb.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static struct policydb_compat_info *policydb_lookup_compat(int version)
int i;
struct policydb_compat_info *info = NULL;

for (i = 0; i < sizeof(policydb_compat)/sizeof(*info); i++) {
for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
if (policydb_compat[i].version == version) {
info = &policydb_compat[i];
break;
Expand Down

0 comments on commit 32725ad

Please sign in to comment.