Skip to content
Snippets Groups Projects
Commit af3b162a authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

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: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6aa8b049
No related branches found
No related tags found
No related merge requests found
......@@ -2054,7 +2054,7 @@ static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
*/
static int pppol2tp_tunnel_getsockopt(struct sock *sk,
struct pppol2tp_tunnel *tunnel,
int optname, int __user *val)
int optname, int *val)
{
int err = 0;
......@@ -2077,7 +2077,7 @@ static int pppol2tp_tunnel_getsockopt(struct sock *sk,
*/
static int pppol2tp_session_getsockopt(struct sock *sk,
struct pppol2tp_session *session,
int optname, int __user *val)
int optname, int *val)
{
int err = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment