diff options
author | Navid Emamdoost <navid.emamdoost@gmail.com> | 2019-09-06 20:59:30 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2019-09-10 15:31:40 +0200 |
commit | 728c1e2a05e4b5fc52fab3421dce772a806612a2 (patch) | |
tree | a16be101bdd76336752724d8e34374ccbf4bd229 /drivers/net/wireless/ath/ath9k | |
parent | ath9k_htc: release allocated buffer if timed out (diff) | |
download | linux-728c1e2a05e4b5fc52fab3421dce772a806612a2.tar.xz linux-728c1e2a05e4b5fc52fab3421dce772a806612a2.zip |
ath9k: release allocated buffer if timed out
In ath9k_wmi_cmd, the allocated network buffer needs to be released
if timeout happens. Otherwise memory will be leaked.
Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/wmi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/wmi.c b/drivers/net/wireless/ath/ath9k/wmi.c index d1f6710ca63b..cdc146091194 100644 --- a/drivers/net/wireless/ath/ath9k/wmi.c +++ b/drivers/net/wireless/ath/ath9k/wmi.c @@ -336,6 +336,7 @@ int ath9k_wmi_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id, ath_dbg(common, WMI, "Timeout waiting for WMI command: %s\n", wmi_cmd_to_name(cmd_id)); mutex_unlock(&wmi->op_mutex); + kfree_skb(skb); return -ETIMEDOUT; } |