projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dfea2aa
)
NET: ROSE: Don't dereference NULL neighbour pointer.
author
Ralf Baechle
<
[email protected]
>
Thu, 18 Jun 2015 22:46:53 +0000
(
00:46
+0200)
committer
David S. Miller
<
[email protected]
>
Tue, 23 Jun 2015 10:26:27 +0000
(
03:26
-0700)
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 <
[email protected]
>
Tested-by: Bernard Pidoux <
[email protected]
>
Cc:
[email protected]
#2.6.11+
Signed-off-by: David S. Miller <
[email protected]
>
net/rose/af_rose.c
patch
|
blob
|
history
diff --git
a/net/rose/af_rose.c
b/net/rose/af_rose.c
index 8ae603069a1a1706982dc0b7affd5443cb912308..dd304bc40788d5001820530842db936201965fb6 100644
(file)
--- a/
net/rose/af_rose.c
+++ b/
net/rose/af_rose.c
@@
-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;
}
}