commit | 3d435ad7218ff58c846d7e52d87c2daf115f50cd | [log] [tgz] |
---|---|---|
author | Jones Desougi <jones.desougi@27m.se> | Wed Oct 27 19:38:34 2010 +0200 |
committer | John W. Linville <linville@tuxdriver.com> | Wed Oct 27 15:54:54 2010 -0400 |
tree | 67d70141b5d7df2c4194231bed3ec1430771bcc5 | |
parent | dc9f48ce7c7d345be31208def51572a8250a4a03 [diff] |
ath5k: Fix double free on hw attach error path If ath5k_hw_attach fails it will free sc->ah (local variable ah) before returning. However, when it reports failure the caller (ath5k_pci_probe) will also free sc->ah. Let the caller handle the deallocation, it does so on further errors as well. Signed-off-by: Jones Desougi <jones.desougi@27m.se> Signed-off-by: John W. Linville <linville@tuxdriver.com>