aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-04-17 23:19:55 -0700
committerDavid S. Miller <davem@davemloft.net>2008-04-17 23:19:55 -0700
commitf5ba2d32170679eb9b7c251ac3d9687916a41c18 (patch)
treed0bd86075cf7437e9022955eb8813c388178f544
parent[INET]: Uninline the __inet_inherit_port call. (diff)
downloadlinux-dev-f5ba2d32170679eb9b7c251ac3d9687916a41c18.tar.xz
linux-dev-f5ba2d32170679eb9b7c251ac3d9687916a41c18.zip
[PKT_SCHED]: Fix datalen check in tcf_simp_init().
datalen is unsigned so it can never be less than zero, but that's ok because the attribute passed to nla_len() has been validated and therefore a negative return value is impossible. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/sched/act_simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_simple.c b/net/sched/act_simple.c
index fbde461b716c..64b2d136c78e 100644
--- a/net/sched/act_simple.c
+++ b/net/sched/act_simple.c
@@ -115,7 +115,7 @@ static int tcf_simp_init(struct nlattr *nla, struct nlattr *est,
return -EINVAL;
datalen = nla_len(tb[TCA_DEF_DATA]);
- if (datalen <= 0)
+ if (datalen == 0)
return -EINVAL;
pc = tcf_hash_check(parm->index, a, bind, &simp_hash_info);