aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/act_ipt.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/act_ipt.c')
-rw-r--r--net/sched/act_ipt.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/sched/act_ipt.c b/net/sched/act_ipt.c
index fee5282637cc..12693347d56a 100644
--- a/net/sched/act_ipt.c
+++ b/net/sched/act_ipt.c
@@ -104,9 +104,13 @@ static int tcf_ipt_init(struct nlattr *nla, struct nlattr *est,
104 u32 hook = 0; 104 u32 hook = 0;
105 u32 index = 0; 105 u32 index = 0;
106 106
107 if (nla == NULL || nla_parse_nested(tb, TCA_IPT_MAX, nla, NULL) < 0) 107 if (nla == NULL)
108 return -EINVAL; 108 return -EINVAL;
109 109
110 err = nla_parse_nested(tb, TCA_IPT_MAX, nla, NULL);
111 if (err < 0)
112 return err;
113
110 if (tb[TCA_IPT_HOOK] == NULL || 114 if (tb[TCA_IPT_HOOK] == NULL ||
111 nla_len(tb[TCA_IPT_HOOK]) < sizeof(u32)) 115 nla_len(tb[TCA_IPT_HOOK]) < sizeof(u32))
112 return -EINVAL; 116 return -EINVAL;