From: Oliver Hartkopp Date: Wed, 20 Apr 2011 01:57:15 +0000 (+0000) Subject: can: add missing socket check in can/raw release X-Git-Tag: v2.6.33.13~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=19ad77be55e04722f4879bf41773b5b1d0d07510;p=karo-tx-linux.git can: add missing socket check in can/raw release commit 10022a6c66e199d8f61d9044543f38785713cbbd upstream. v2: added space after 'if' according code style. We can get here with a NULL socket argument passed from userspace, so we need to handle it accordingly. Thanks to Dave Jones pointing at this issue in net/can/bcm.c Signed-off-by: Oliver Hartkopp Signed-off-by: David S. Miller Cc: Chuck Ebbert Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/can/raw.c b/net/can/raw.c index abca920440b5..502368c34713 100644 --- a/net/can/raw.c +++ b/net/can/raw.c @@ -280,7 +280,12 @@ static int raw_init(struct sock *sk) static int raw_release(struct socket *sock) { struct sock *sk = sock->sk; - struct raw_sock *ro = raw_sk(sk); + struct raw_sock *ro; + + if (!sk) + return 0; + + ro = raw_sk(sk); unregister_netdevice_notifier(&ro->notifier);