mirror of
https://github.com/torvalds/linux.git
synced 2026-05-21 13:27:57 +02:00
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: 2108df3c4b ("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
This commit is contained in:
parent
d1c722867f
commit
956fb851a6
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user