diff options
Diffstat (limited to 'net/ipv4/ipcomp.c')
| -rw-r--r-- | net/ipv4/ipcomp.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/net/ipv4/ipcomp.c b/net/ipv4/ipcomp.c index 38fbf04150a..544ce0876f1 100644 --- a/net/ipv4/ipcomp.c +++ b/net/ipv4/ipcomp.c @@ -124,16 +124,12 @@ static int ipcomp4_init_state(struct xfrm_state *x)  	if (x->props.mode == XFRM_MODE_TUNNEL) {  		err = ipcomp_tunnel_attach(x);  		if (err) -			goto error_tunnel; +			goto out;  	}  	err = 0;  out:  	return err; - -error_tunnel: -	ipcomp_destroy(x); -	goto out;  }  static const struct xfrm_type ipcomp_type = {  |