mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 18:55:12 +00:00
NET: ROSE: Don't dereference NULL neighbour pointer.
commitd496f7842a
upstream. A ROSE socket doesn't necessarily always have a neighbour pointer so check if the neighbour pointer is valid before dereferencing it. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Tested-by: Bernard Pidoux <f6bvp@free.fr> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ben Hutchings <ben@decadent.org.uk> (cherry picked from commit8bbe4f448c
) Signed-off-by: Willy Tarreau <w@1wt.eu>
This commit is contained in:
parent
c726e1d461
commit
7b61d03d04
@ -194,7 +194,8 @@ static void rose_kill_by_device(struct net_device *dev)
|
||||
|
||||
if (rose->device == dev) {
|
||||
rose_disconnect(s, ENETUNREACH, ROSE_OUT_OF_ORDER, 0);
|
||||
rose->neighbour->use--;
|
||||
if (rose->neighbour)
|
||||
rose->neighbour->use--;
|
||||
rose->device = NULL;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user