diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-11-11 22:39:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-11-11 22:39:12 +0000 |
commit | d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1 (patch) | |
tree | 1e4f7494db9a85f1e16deb627fc4d39c86ad35b4 /package/mac80211/patches/300-nl80211_dump_crash_fix.patch | |
parent | 51fa01f42c5424c24af3d3bb6a965a4dc9b3aacd (diff) | |
download | mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.zip mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.tar.gz mtk-20170518-d9d3dfe9837f9234cfe4eee98d2e3fa1d25074d1.tar.bz2 |
mac80211: update to wireless-testing 2010-11-10 + some pending work
SVN-Revision: 23968
Diffstat (limited to 'package/mac80211/patches/300-nl80211_dump_crash_fix.patch')
-rw-r--r-- | package/mac80211/patches/300-nl80211_dump_crash_fix.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/package/mac80211/patches/300-nl80211_dump_crash_fix.patch b/package/mac80211/patches/300-nl80211_dump_crash_fix.patch deleted file mode 100644 index 3c6385f..0000000 --- a/package/mac80211/patches/300-nl80211_dump_crash_fix.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- 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; - } - |