l2tp: unmanaged L2TPv3 tunnels fixes
Followup to commit 789a4a2c
(l2tp: Add support for static unmanaged L2TPv3 tunnels)
One missing init in l2tp_tunnel_sock_create() could access random kernel
memory, and a bit field should be unsigned.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
486f50ca79
commit
7bddd0db62
2 changed files with 2 additions and 2 deletions
|
@ -1227,7 +1227,7 @@ static int l2tp_tunnel_sock_create(u32 tunnel_id, u32 peer_tunnel_id, struct l2t
|
|||
int err = -EINVAL;
|
||||
struct sockaddr_in udp_addr;
|
||||
struct sockaddr_l2tpip ip_addr;
|
||||
struct socket *sock;
|
||||
struct socket *sock = NULL;
|
||||
|
||||
switch (cfg->encap) {
|
||||
case L2TP_ENCAPTYPE_UDP:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue