diff options
author | weiyongjun (A) <weiyongjun1@huawei.com> | 2018-01-18 03:23:34 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-01-22 14:03:29 +0100 |
commit | 0ddcff49b672239dda94d70d0fcf50317a9f4b51 (patch) | |
tree | 1f56d918fd6c09941ba415f0bb2f03cf11c8c898 /drivers/net | |
parent | debugfs_sta: Remove unneeded semicolons (diff) | |
download | linux-0ddcff49b672239dda94d70d0fcf50317a9f4b51.tar.xz linux-0ddcff49b672239dda94d70d0fcf50317a9f4b51.zip |
mac80211_hwsim: fix possible memory leak in hwsim_new_radio_nl()
'hwname' is malloced in hwsim_new_radio_nl() and should be freed
before leaving from the error handling cases, otherwise it will cause
memory leak.
Fixes: ff4dd73dd2b4 ("mac80211_hwsim: check HWSIM_ATTR_RADIO_NAME length")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/mac80211_hwsim.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index 6bf063adcbde..66c2ac0397da 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c @@ -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]) { 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; + } param.regd = hwsim_world_regdom_custom[idx]; } |