diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2020-04-29 10:30:53 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-05-01 22:02:14 +0300 |
commit | 4c09f8b6913a779ca0c70ea8058bf21537eebb3b (patch) | |
tree | 343c931f942fdd37e80360b64309eb14e62aa7b9 /security/selinux/ss/policydb.c | |
parent | 9521eb3ea19a828d8fd59a2785338fd742dbcf31 (diff) | |
download | linux-4c09f8b6913a779ca0c70ea8058bf21537eebb3b.tar.xz |
selinux: fix error return code in policydb_read()
Fix to return negative error code -ENOMEM from the kvcalloc() error
handling case instead of 0, as done elsewhere in this function.
Fixes: acdf52d97f82 ("selinux: convert to kvmalloc")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c index 1c0041576643..a42369dd96a9 100644 --- a/security/selinux/ss/policydb.c +++ b/security/selinux/ss/policydb.c @@ -2638,6 +2638,7 @@ int policydb_read(struct policydb *p, void *fp) if (rc) goto bad; + rc = -ENOMEM; p->type_attr_map_array = kvcalloc(p->p_types.nprim, sizeof(*p->type_attr_map_array), GFP_KERNEL); |