summaryrefslogtreecommitdiffstats
path: root/security/selinux/ss
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-01-14 07:08:59 -0500
committerPaul Moore <paul@paul-moore.com>2017-03-23 17:14:16 -0400
commitad10a10567e243425d7be35a3d950709371fa048 (patch)
treefa74701746d440e7bd2de8e5b040c7fed397a614 /security/selinux/ss
parentcb8d21e3640f18444c597bddaec156637eacecf8 (diff)
selinux: Use kcalloc() in policydb_index()
Multiplications for the size determination of memory allocations indicated that array data structures should be processed. Thus use the corresponding function "kcalloc". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss')
-rw-r--r--security/selinux/ss/policydb.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 9c92f29a38ea..66b9a357fa1b 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -540,23 +540,23 @@ static int policydb_index(struct policydb *p)
540#endif 540#endif
541 541
542 rc = -ENOMEM; 542 rc = -ENOMEM;
543 p->class_val_to_struct = 543 p->class_val_to_struct = kcalloc(p->p_classes.nprim,
544 kzalloc(p->p_classes.nprim * sizeof(*(p->class_val_to_struct)), 544 sizeof(*p->class_val_to_struct),
545 GFP_KERNEL); 545 GFP_KERNEL);
546 if (!p->class_val_to_struct) 546 if (!p->class_val_to_struct)
547 goto out; 547 goto out;
548 548
549 rc = -ENOMEM; 549 rc = -ENOMEM;
550 p->role_val_to_struct = 550 p->role_val_to_struct = kcalloc(p->p_roles.nprim,
551 kzalloc(p->p_roles.nprim * sizeof(*(p->role_val_to_struct)), 551 sizeof(*p->role_val_to_struct),
552 GFP_KERNEL); 552 GFP_KERNEL);
553 if (!p->role_val_to_struct) 553 if (!p->role_val_to_struct)
554 goto out; 554 goto out;
555 555
556 rc = -ENOMEM; 556 rc = -ENOMEM;
557 p->user_val_to_struct = 557 p->user_val_to_struct = kcalloc(p->p_users.nprim,
558 kzalloc(p->p_users.nprim * sizeof(*(p->user_val_to_struct)), 558 sizeof(*p->user_val_to_struct),
559 GFP_KERNEL); 559 GFP_KERNEL);
560 if (!p->user_val_to_struct) 560 if (!p->user_val_to_struct)
561 goto out; 561 goto out;
562 562