projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69c93f9
)
ath10k: fix possible memory leak in ath10k_bmi_lz_data_large()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Mon, 27 Apr 2020 10:43:48 +0000
(10:43 +0000)
committer
Kalle Valo
<kvalo@codeaurora.org>
Mon, 4 May 2020 08:52:07 +0000
(11:52 +0300)
'cmd' is malloced in ath10k_bmi_lz_data_large() and should be freed
before leaving from the error handling cases, otherwise it will cause
memory leak.
Fixes:
d58f466a5dee
("ath10k: add large size for BMI download data for SDIO")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link:
https://lore.kernel.org/r/20200427104348.13570-1-weiyongjun1@huawei.com
drivers/net/wireless/ath/ath10k/bmi.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath10k/bmi.c
b/drivers/net/wireless/ath/ath10k/bmi.c
index
ea90810
..
5b6db6e
100644
(file)
--- a/
drivers/net/wireless/ath/ath10k/bmi.c
+++ b/
drivers/net/wireless/ath/ath10k/bmi.c
@@
-380,6
+380,7
@@
static int ath10k_bmi_lz_data_large(struct ath10k *ar, const void *buffer, u32 l
NULL, NULL);
if (ret) {
ath10k_warn(ar, "unable to write to the device\n");
+ kfree(cmd);
return ret;
}