diff options
author | Maxime Austruy <maxime@tralhalla.org> | 2006-12-03 11:40:01 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-12-05 19:31:33 -0500 |
commit | cc8ce997d2a4e524b1acea44beaf5bcfefdb1bfe (patch) | |
tree | 9ad8f678b97b44d2e4fabff0d11d2795ab3ba12b /net/ieee80211 | |
parent | 2b50c24554d31c2db2f93b1151b5991e62f96594 (diff) |
[PATCH] softmac: fix unbalanced mutex_lock/unlock in ieee80211softmac_wx_set_mlme
Routine ieee80211softmac_wx_set_mlme has one return that fails
to release a mutex acquired at entry.
Signed-off-by: Maxime Austruy <maxime@tralhalla.org>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211')
-rw-r--r-- | net/ieee80211/softmac/ieee80211softmac_wx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_wx.c b/net/ieee80211/softmac/ieee80211softmac_wx.c index 23068a830f7d..5b7b5b41554d 100644 --- a/net/ieee80211/softmac/ieee80211softmac_wx.c +++ b/net/ieee80211/softmac/ieee80211softmac_wx.c | |||
@@ -495,7 +495,8 @@ ieee80211softmac_wx_set_mlme(struct net_device *dev, | |||
495 | printk(KERN_DEBUG PFX "wx_set_mlme: we should know the net here...\n"); | 495 | printk(KERN_DEBUG PFX "wx_set_mlme: we should know the net here...\n"); |
496 | goto out; | 496 | goto out; |
497 | } | 497 | } |
498 | return ieee80211softmac_deauth_req(mac, net, reason); | 498 | err = ieee80211softmac_deauth_req(mac, net, reason); |
499 | goto out; | ||
499 | case IW_MLME_DISASSOC: | 500 | case IW_MLME_DISASSOC: |
500 | ieee80211softmac_send_disassoc_req(mac, reason); | 501 | ieee80211softmac_send_disassoc_req(mac, reason); |
501 | mac->associnfo.associated = 0; | 502 | mac->associnfo.associated = 0; |