aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch')
-rw-r--r--target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch b/target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch
deleted file mode 100644
index cd0414be1e..0000000000
--- a/target/linux/generic/patches-4.9/612-netfilter_match_reduce_memory_access.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/net/ipv4/netfilter/ip_tables.c
-+++ b/net/ipv4/netfilter/ip_tables.c
-@@ -61,9 +61,9 @@ ip_packet_match(const struct iphdr *ip,
- if (ipinfo->flags & IPT_F_NO_DEF_MATCH)
- return true;
-
-- if (NF_INVF(ipinfo, IPT_INV_SRCIP,
-+ if (NF_INVF(ipinfo, IPT_INV_SRCIP, ipinfo->smsk.s_addr &&
- (ip->saddr & ipinfo->smsk.s_addr) != ipinfo->src.s_addr) ||
-- NF_INVF(ipinfo, IPT_INV_DSTIP,
-+ NF_INVF(ipinfo, IPT_INV_DSTIP, ipinfo->dmsk.s_addr &&
- (ip->daddr & ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr))
- return false;
-