[PATCH] selinux: Remove unneeded k[cm]alloc() return value casts

Remove redundant casts of k*alloc() return values in
security/selinux/ss/services.c

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Acked-by: Stephen Smalley <sds@epoch.ncsc.mil>
Cc: James Morris <jmorris@namei.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Jesper Juhl and committed by
Linus Torvalds
e0795cf4 792db3af

+3 -3
+3 -3
security/selinux/ss/services.c
··· 1712 1712 goto out; 1713 1713 } 1714 1714 1715 - *names = (char**)kcalloc(*len, sizeof(char*), GFP_ATOMIC); 1715 + *names = kcalloc(*len, sizeof(char*), GFP_ATOMIC); 1716 1716 if (!*names) 1717 1717 goto err; 1718 1718 1719 - *values = (int*)kcalloc(*len, sizeof(int), GFP_ATOMIC); 1719 + *values = kcalloc(*len, sizeof(int), GFP_ATOMIC); 1720 1720 if (!*values) 1721 1721 goto err; 1722 1722 ··· 1724 1724 size_t name_len; 1725 1725 (*values)[i] = policydb.bool_val_to_struct[i]->state; 1726 1726 name_len = strlen(policydb.p_bool_val_to_name[i]) + 1; 1727 - (*names)[i] = (char*)kmalloc(sizeof(char) * name_len, GFP_ATOMIC); 1727 + (*names)[i] = kmalloc(sizeof(char) * name_len, GFP_ATOMIC); 1728 1728 if (!(*names)[i]) 1729 1729 goto err; 1730 1730 strncpy((*names)[i], policydb.p_bool_val_to_name[i], name_len);