aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/cls_route.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/cls_route.c')
-rw-r--r--net/sched/cls_route.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c
index b1aae84cbadc..3aa8109aa3ce 100644
--- a/net/sched/cls_route.c
+++ b/net/sched/cls_route.c
@@ -440,8 +440,9 @@ static int route4_change(struct tcf_proto *tp, unsigned long base,
440 if (opt == NULL) 440 if (opt == NULL)
441 return handle ? -EINVAL : 0; 441 return handle ? -EINVAL : 0;
442 442
443 if (nla_parse_nested(tb, TCA_ROUTE4_MAX, opt, NULL) < 0) 443 err = nla_parse_nested(tb, TCA_ROUTE4_MAX, opt, NULL);
444 return -EINVAL; 444 if (err < 0)
445 return err;
445 446
446 if ((f = (struct route4_filter*)*arg) != NULL) { 447 if ((f = (struct route4_filter*)*arg) != NULL) {
447 if (f->handle != handle && handle) 448 if (f->handle != handle && handle)