ax25: Fix segfault after sock connection timeout
authorBasil Gunn <basil@pacabunga.com>
Sat, 14 Jan 2017 20:18:55 +0000 (12:18 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 4 Feb 2017 08:45:09 +0000 (09:45 +0100)
commit4f5e54bdd052cb7b6f754d6e4ced0367b11af3ed
tree1572752aeb627117b7b6a82a437ac5126aa8c3bd
parent062b7f35ff6caf2f4ed0ee99926944aad1e1ceb1
ax25: Fix segfault after sock connection timeout

[ Upstream commit 8a367e74c0120ef68c8c70d5a025648c96626dff ]

The ax.25 socket connection timed out & the sock struct has been
previously taken down ie. sock struct is now a NULL pointer. Checking
the sock_flag causes the segfault.  Check if the socket struct pointer
is NULL before checking sock_flag. This segfault is seen in
timed out netrom connections.

Please submit to -stable.

Signed-off-by: Basil Gunn <basil@pacabunga.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ax25/ax25_subr.c