aboutsummaryrefslogtreecommitdiffstats
path: root/net/x25/x25_route.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/x25/x25_route.c')
-rw-r--r--net/x25/x25_route.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/net/x25/x25_route.c b/net/x25/x25_route.c
index 2c999ccf504a..97d77c532d8c 100644
--- a/net/x25/x25_route.c
+++ b/net/x25/x25_route.c
@@ -19,6 +19,7 @@
19 19
20#include <linux/if_arp.h> 20#include <linux/if_arp.h>
21#include <linux/init.h> 21#include <linux/init.h>
22#include <linux/slab.h>
22#include <net/x25.h> 23#include <net/x25.h>
23 24
24LIST_HEAD(x25_route_list); 25LIST_HEAD(x25_route_list);
@@ -136,8 +137,10 @@ struct net_device *x25_dev_get(char *devname)
136#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE) 137#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
137 && dev->type != ARPHRD_ETHER 138 && dev->type != ARPHRD_ETHER
138#endif 139#endif
139 ))) 140 ))){
140 dev_put(dev); 141 dev_put(dev);
142 dev = NULL;
143 }
141 144
142 return dev; 145 return dev;
143} 146}
@@ -190,7 +193,7 @@ int x25_route_ioctl(unsigned int cmd, void __user *arg)
190 goto out; 193 goto out;
191 194
192 rc = -EINVAL; 195 rc = -EINVAL;
193 if (rt.sigdigits < 0 || rt.sigdigits > 15) 196 if (rt.sigdigits > 15)
194 goto out; 197 goto out;
195 198
196 dev = x25_dev_get(rt.device); 199 dev = x25_dev_get(rt.device);