diff options
Diffstat (limited to 'drivers/net/wan/cycx_x25.c')
| -rw-r--r-- | drivers/net/wan/cycx_x25.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/net/wan/cycx_x25.c b/drivers/net/wan/cycx_x25.c index 5b48cd8568f..02d57c0b424 100644 --- a/drivers/net/wan/cycx_x25.c +++ b/drivers/net/wan/cycx_x25.c | |||
| @@ -436,9 +436,7 @@ static int cycx_wan_new_if(struct wan_device *wandev, struct net_device *dev, | |||
| 436 | } | 436 | } |
| 437 | 437 | ||
| 438 | if (err) { | 438 | if (err) { |
| 439 | if (chan->local_addr) | 439 | kfree(chan->local_addr); |
| 440 | kfree(chan->local_addr); | ||
| 441 | |||
| 442 | kfree(chan); | 440 | kfree(chan); |
| 443 | return err; | 441 | return err; |
| 444 | } | 442 | } |
| @@ -458,9 +456,7 @@ static int cycx_wan_del_if(struct wan_device *wandev, struct net_device *dev) | |||
| 458 | struct cycx_x25_channel *chan = dev->priv; | 456 | struct cycx_x25_channel *chan = dev->priv; |
| 459 | 457 | ||
| 460 | if (chan->svc) { | 458 | if (chan->svc) { |
| 461 | if (chan->local_addr) | 459 | kfree(chan->local_addr); |
| 462 | kfree(chan->local_addr); | ||
| 463 | |||
| 464 | if (chan->state == WAN_CONNECTED) | 460 | if (chan->state == WAN_CONNECTED) |
| 465 | del_timer(&chan->timer); | 461 | del_timer(&chan->timer); |
| 466 | } | 462 | } |
