NET: ROSE: Don't dereference NULL neighbour pointer.
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> Cc: stable@vger.kernel.org #2.6.11+ Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dfea2aa654
commit
d496f7842a
|
@ -192,7 +192,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