diff options
Diffstat (limited to 'net/sched/cls_fw.c')
-rw-r--r-- | net/sched/cls_fw.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sched/cls_fw.c b/net/sched/cls_fw.c index db6e90a37846..a1a9f4d26b8c 100644 --- a/net/sched/cls_fw.c +++ b/net/sched/cls_fw.c | |||
@@ -246,8 +246,9 @@ static int fw_change(struct tcf_proto *tp, unsigned long base, | |||
246 | if (!opt) | 246 | if (!opt) |
247 | return handle ? -EINVAL : 0; | 247 | return handle ? -EINVAL : 0; |
248 | 248 | ||
249 | if (nla_parse_nested(tb, TCA_FW_MAX, opt, NULL) < 0) | 249 | err = nla_parse_nested(tb, TCA_FW_MAX, opt, NULL); |
250 | return -EINVAL; | 250 | if (err < 0) |
251 | return err; | ||
251 | 252 | ||
252 | if (f != NULL) { | 253 | if (f != NULL) { |
253 | if (f->id != handle && handle) | 254 | if (f->id != handle && handle) |