summaryrefslogtreecommitdiffstats
path: root/package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch')
-rw-r--r--package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch b/package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch
deleted file mode 100644
index e779aaa9c..000000000
--- a/package/iptables/patches/1.4.3.2/010-xtables-parse-protocol-crash.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ur iptables-1.4.3.2.orig/xtables.c iptables-1.4.3.2/xtables.c
---- iptables-1.4.3.2.orig/xtables.c 2009-05-03 16:17:53.000000000 +0200
-+++ iptables-1.4.3.2/xtables.c 2009-05-03 16:27:37.000000000 +0200
-@@ -1502,7 +1502,8 @@
- else {
- unsigned int i;
- for (i = 0; i < ARRAY_SIZE(xtables_chain_protos); ++i) {
-- if (strcmp(s, xtables_chain_protos[i].name) == 0) {
-+ if ((xtables_chain_protos[i].name != NULL) &&
-+ (strcmp(s, xtables_chain_protos[i].name) == 0)) {
- proto = xtables_chain_protos[i].num;
- break;
- }