mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00: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);
|
||||
if (!entry)
|
||||
return -ENOMEM;
|
||||
entry->name = kmalloc(strlen(name)+1, GFP_KERNEL);
|
||||
entry->name = kstrdup(name, GFP_KERNEL);
|
||||
if (!entry->name) {
|
||||
kfree(entry);
|
||||
return -ENOMEM;
|
||||
}
|
||||
strcpy(entry->name, name);
|
||||
|
||||
file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
|
||||
if (!file) {
|
||||
|
Loading…
Reference in New Issue
Block a user