diff options
author | Yuan Can <yuancan@huawei.com> | 2022-12-05 06:14:41 +0000 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2022-12-14 14:19:41 +0200 |
commit | 956fb851a6e19da5ab491e19c1bc323bb2c2cf6f (patch) | |
tree | a95818da60a714314c1531660ca5e8165ed37f53 /drivers/net/wireless/rsi | |
parent | d1c722867f8022a27182b9a1d84e9bca75486c9a (diff) | |
download | linux-956fb851a6e19da5ab491e19c1bc323bb2c2cf6f.tar.gz linux-956fb851a6e19da5ab491e19c1bc323bb2c2cf6f.tar.bz2 linux-956fb851a6e19da5ab491e19c1bc323bb2c2cf6f.zip |
wifi: rsi: Fix memory leak in rsi_coex_attach()
The coex_cb needs to be freed when rsi_create_kthread() failed in
rsi_coex_attach().
Fixes: 2108df3c4b18 ("rsi: add coex support")
Signed-off-by: Yuan Can <yuancan@huawei.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20221205061441.114632-1-yuancan@huawei.com
Diffstat (limited to 'drivers/net/wireless/rsi')
-rw-r--r-- | drivers/net/wireless/rsi/rsi_91x_coex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/rsi/rsi_91x_coex.c b/drivers/net/wireless/rsi/rsi_91x_coex.c index 8a3d86897ea8..45ac9371f262 100644 --- a/drivers/net/wireless/rsi/rsi_91x_coex.c +++ b/drivers/net/wireless/rsi/rsi_91x_coex.c @@ -160,6 +160,7 @@ int rsi_coex_attach(struct rsi_common *common) rsi_coex_scheduler_thread, "Coex-Tx-Thread")) { rsi_dbg(ERR_ZONE, "%s: Unable to init tx thrd\n", __func__); + kfree(coex_cb); return -EINVAL; } return 0; |