Skip to content

Commit

Permalink
wifi: rtw88: fix memory leak in rtw_usb_probe()
Browse files Browse the repository at this point in the history
[ Upstream commit 48181d2 ]

drivers/net/wireless/realtek/rtw88/usb.c:876 rtw_usb_probe()
warn: 'hw' from ieee80211_alloc_hw() not released on lines: 811

Fix this by modifying return to a goto statement.

Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
Reviewed-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230309021636.528601-1-dzm91@hust.edu.cn
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
mudongliang authored and gregkh committed May 24, 2023
1 parent 8729024 commit 6cc9237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/realtek/rtw88/usb.c
Expand Up @@ -832,7 +832,7 @@ int rtw_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)

ret = rtw_usb_alloc_rx_bufs(rtwusb);
if (ret)
return ret;
goto err_release_hw;

ret = rtw_core_init(rtwdev);
if (ret)
Expand Down

0 comments on commit 6cc9237

Please sign in to comment.