]> git.hungrycats.org Git - linux/commitdiff
cfg80211: fix refcount leak
authorJohannes Berg <johannes@sipsolutions.net>
Thu, 2 Jul 2009 13:46:41 +0000 (15:46 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 30 Jul 2009 21:39:09 +0000 (14:39 -0700)
commit 2dce4c2b5f0b43bd25bf9ea6ded06b7f8a54c91f upstream.

The code in cfg80211's cfg80211_bss_update erroneously
grabs a reference to the BSS, which means that it will
never be freed.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/wireless/scan.c

index 1f260c40b6ca478954e6a67e8b65cdfb33a2666c..bc7f7882986083ea93d407d03102acd021482bb4 100644 (file)
@@ -365,7 +365,6 @@ cfg80211_bss_update(struct cfg80211_registered_device *dev,
        found = rb_find_bss(dev, res);
 
        if (found) {
-               kref_get(&found->ref);
                found->pub.beacon_interval = res->pub.beacon_interval;
                found->pub.tsf = res->pub.tsf;
                found->pub.signal = res->pub.signal;