|
@@ -3197,8 +3197,10 @@ static int hwsim_new_radio_nl(struct sk_buff *msg, struct genl_info *info)
|
|
if (info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]) {
|
|
if (info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]) {
|
|
u32 idx = nla_get_u32(info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]);
|
|
u32 idx = nla_get_u32(info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]);
|
|
|
|
|
|
- if (idx >= ARRAY_SIZE(hwsim_world_regdom_custom))
|
|
|
|
|
|
+ if (idx >= ARRAY_SIZE(hwsim_world_regdom_custom)) {
|
|
|
|
+ kfree(hwname);
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
|
|
+ }
|
|
param.regd = hwsim_world_regdom_custom[idx];
|
|
param.regd = hwsim_world_regdom_custom[idx];
|
|
}
|
|
}
|
|
|
|
|