diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-10-30 13:24:39 +0800 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2013-11-06 10:49:21 +0200 |
commit | 12eb087939d11af6b5a8228807d1428535aedb3b (patch) | |
tree | 2cc70b71e5ccb974bdb59d97e2efa2936aa12491 | |
parent | e204548101732849dadd8d9f229cd1c83ae9236a (diff) |
ath10k: fix possible memory leak in ath10k_pci_probe()
memory is malloced in ath10k_pci_probe() and should be freed before
leaving from the error handling cases, otherwise it will cause
memory leak.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath10k/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 42d2473b56b..25ed07b96a1 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -2471,7 +2471,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev, ret = ath10k_do_pci_wake(ar); if (ret) { ath10k_err("Failed to get chip id: %d\n", ret); - return ret; + goto err_iomap; } chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS); |