提交 7897bd00 编写于 作者: C Chaehyun Lim 提交者: Greg Kroah-Hartman

staging: wilc1000: use kmemdup in host_int_add_station

This patch replaces kmalloc followed by memcpy with kmemdup.
Signed-off-by: NChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 773e02e6
......@@ -4560,13 +4560,11 @@ int host_int_add_station(struct host_if_drv *hif_drv,
memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param));
if (add_sta_info->rates_len > 0) {
u8 *rates = kmalloc(add_sta_info->rates_len, GFP_KERNEL);
u8 *rates = kmemdup(sta_param->rates,
add_sta_info->rates_len,
GFP_KERNEL);
if (!rates)
return -ENOMEM;
memcpy(rates, sta_param->rates,
add_sta_info->rates_len);
add_sta_info->rates = rates;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册