mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-30 11:08:30 +00:00
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
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue