diff options
author | Dan Carpenter <error27@gmail.com> | 2010-08-14 07:09:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-18 17:24:51 -0400 |
commit | 00093fab980d0a8950a64bdf9e346d0497b9a7e4 (patch) | |
tree | 4f222456af157773cbf32f9f06ea0169fbcf929e /net/sched | |
parent | 666be4298bd8f9508b32833b17a686dde630f2a5 (diff) |
net/sched: remove unneeded NULL check
There is no need to check "s". nla_data() doesn't return NULL. Also we
already dereferenced "s" at this point so it would have oopsed ealier if
it were NULL.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index 408eea7086aa..6fb3d41c0e41 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c | |||
@@ -360,7 +360,7 @@ static struct qdisc_size_table *qdisc_get_stab(struct nlattr *opt) | |||
360 | tsize = nla_len(tb[TCA_STAB_DATA]) / sizeof(u16); | 360 | tsize = nla_len(tb[TCA_STAB_DATA]) / sizeof(u16); |
361 | } | 361 | } |
362 | 362 | ||
363 | if (!s || tsize != s->tsize || (!tab && tsize > 0)) | 363 | if (tsize != s->tsize || (!tab && tsize > 0)) |
364 | return ERR_PTR(-EINVAL); | 364 | return ERR_PTR(-EINVAL); |
365 | 365 | ||
366 | spin_lock(&qdisc_stab_lock); | 366 | spin_lock(&qdisc_stab_lock); |