nl80211: fix a station dump crash triggered by sending an invalid ifindex
authorFelix Fietkau <nbd@openwrt.org>
Sun, 31 Oct 2010 14:32:15 +0000 (14:32 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 31 Oct 2010 14:32:15 +0000 (14:32 +0000)
SVN-Revision: 23741

package/mac80211/patches/300-nl80211_dump_crash_fix.patch [new file with mode: 0644]

diff --git a/package/mac80211/patches/300-nl80211_dump_crash_fix.patch b/package/mac80211/patches/300-nl80211_dump_crash_fix.patch
new file mode 100644 (file)
index 0000000..3c6385f
--- /dev/null
@@ -0,0 +1,13 @@
+--- a/net/wireless/nl80211.c
++++ b/net/wireless/nl80211.c
+@@ -224,8 +224,8 @@ static int nl80211_prepare_netdev_dump(s
+       }
+       *rdev = cfg80211_get_dev_from_ifindex(sock_net(skb->sk), ifidx);
+-      if (IS_ERR(dev)) {
+-              err = PTR_ERR(dev);
++      if (IS_ERR(*rdev)) {
++              err = PTR_ERR(*rdev);
+               goto out_rtnl;
+       }