mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
drivers: char: ipmi: Replaced kmalloc and strcpy with kstrdup
Replaced calls to kmalloc followed by strcpy with a sincle call to kstrdup. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Signed-off-by: Corey Minyard <cminyard@mvista.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f722406faa
commit
1b6b698f53
@ -2037,12 +2037,11 @@ int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
|
|||||||
entry = kmalloc(sizeof(*entry), GFP_KERNEL);
|
entry = kmalloc(sizeof(*entry), GFP_KERNEL);
|
||||||
if (!entry)
|
if (!entry)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
entry->name = kmalloc(strlen(name)+1, GFP_KERNEL);
|
entry->name = kstrdup(name, GFP_KERNEL);
|
||||||
if (!entry->name) {
|
if (!entry->name) {
|
||||||
kfree(entry);
|
kfree(entry);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
strcpy(entry->name, name);
|
|
||||||
|
|
||||||
file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
|
file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
|
||||||
if (!file) {
|
if (!file) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user