diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-15 15:07:30 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-08-15 15:07:30 -0700 |
commit | 660adc6e60bc8882b16e466c09401cff017dcd94 (patch) | |
tree | 8274d6dd489b5ee7fd410f71ae10c1818041335e /net/ipv6 | |
parent | 3b1855255098e1f78fa74c0f3378c0391e9a7a2b (diff) | |
download | linux-rt-660adc6e60bc8882b16e466c09401cff017dcd94.tar.gz |
[IPv6]: Invalid semicolon after if statement
A similar fix to netfilter from Eric Dumazet inspired me to
look around a bit by using some grep/sed stuff as looking for
this kind of bugs seemed easy to automate. This is one of them
I found where it looks like this semicolon is not valid.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ipv6_sockglue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c index d6846393182d..761a910f4f97 100644 --- a/net/ipv6/ipv6_sockglue.c +++ b/net/ipv6/ipv6_sockglue.c @@ -820,7 +820,7 @@ static int ipv6_getsockopt_sticky(struct sock *sk, struct ipv6_txoptions *opt, return 0; len = min_t(unsigned int, len, ipv6_optlen(hdr)); - if (copy_to_user(optval, hdr, len)); + if (copy_to_user(optval, hdr, len)) return -EFAULT; return ipv6_optlen(hdr); } |