mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie()
[ Upstream commit4a0e218cc9] Do `kfree_skb(new)` before `goto out` to prevent potential leak. Fixes:8959077797("rtw89: 8852a: add ieee80211_ops::hw_scan") Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20230103141054.17372-1-pkshih@realtek.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
de92beb63a
commit
1e336d6bab
@@ -2525,8 +2525,10 @@ static int rtw89_append_probe_req_ie(struct rtw89_dev *rtwdev,
|
||||
|
||||
list_add_tail(&info->list, &scan_info->pkt_list[band]);
|
||||
ret = rtw89_fw_h2c_add_pkt_offload(rtwdev, &info->id, new);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
kfree_skb(new);
|
||||
goto out;
|
||||
}
|
||||
|
||||
kfree_skb(new);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user