diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 12:35:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 14:11:57 -0400 |
commit | af3b162afd9fce69a94d79bd5b1f9c7c302212f4 (patch) | |
tree | a68bb80b4453fb17e2ba8eea5a27e490aa7ae6d6 /drivers/net/pppol2tp.c | |
parent | 6aa8b04975e71fb3d67bec7fbe2995b9bf54a06e (diff) |
misannotation in pppol2tp
Address of auto variable is not a userland pointer. A good thing, too,
since if pppol2tp_tunnel_getsockopt() would _really_ get a userland pointer
as argument, it would be an instant roothole...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/pppol2tp.c')
-rw-r--r-- | drivers/net/pppol2tp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c index f87176055d0e..266e8b38fe10 100644 --- a/drivers/net/pppol2tp.c +++ b/drivers/net/pppol2tp.c | |||
@@ -2054,7 +2054,7 @@ end: | |||
2054 | */ | 2054 | */ |
2055 | static int pppol2tp_tunnel_getsockopt(struct sock *sk, | 2055 | static int pppol2tp_tunnel_getsockopt(struct sock *sk, |
2056 | struct pppol2tp_tunnel *tunnel, | 2056 | struct pppol2tp_tunnel *tunnel, |
2057 | int optname, int __user *val) | 2057 | int optname, int *val) |
2058 | { | 2058 | { |
2059 | int err = 0; | 2059 | int err = 0; |
2060 | 2060 | ||
@@ -2077,7 +2077,7 @@ static int pppol2tp_tunnel_getsockopt(struct sock *sk, | |||
2077 | */ | 2077 | */ |
2078 | static int pppol2tp_session_getsockopt(struct sock *sk, | 2078 | static int pppol2tp_session_getsockopt(struct sock *sk, |
2079 | struct pppol2tp_session *session, | 2079 | struct pppol2tp_session *session, |
2080 | int optname, int __user *val) | 2080 | int optname, int *val) |
2081 | { | 2081 | { |
2082 | int err = 0; | 2082 | int err = 0; |
2083 | 2083 | ||