diff options
author | andrew hendry <andrew.hendry@gmail.com> | 2009-11-24 10:16:05 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-29 03:25:02 -0500 |
commit | 429d33ace5ce6122817f8abe9d170eaa55dc3af9 (patch) | |
tree | 6fff27906c529427ae1a7b180450c148a093623b /net/x25 | |
parent | 1fd975a0520cdb27681855d5a18526e328d36b5c (diff) |
X25: Fix oops and refcnt problems from x25_dev_get
Calls to x25_dev_get check for dev = NULL which was not set.
It allowed x25 to set routes and ioctls on down interfaces.
This caused oopses and refcnt problems on device_unregister.
Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/x25')
-rw-r--r-- | net/x25/x25_route.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/x25/x25_route.c b/net/x25/x25_route.c index 66961ea28c91..b95fae9ab393 100644 --- a/net/x25/x25_route.c +++ b/net/x25/x25_route.c | |||
@@ -136,8 +136,10 @@ struct net_device *x25_dev_get(char *devname) | |||
136 | #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE) | 136 | #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE) |
137 | && dev->type != ARPHRD_ETHER | 137 | && dev->type != ARPHRD_ETHER |
138 | #endif | 138 | #endif |
139 | ))) | 139 | ))){ |
140 | dev_put(dev); | 140 | dev_put(dev); |
141 | dev = NULL; | ||
142 | } | ||
141 | 143 | ||
142 | return dev; | 144 | return dev; |
143 | } | 145 | } |