aboutsummaryrefslogtreecommitdiff
path: root/net/sctp/protocol.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-06-17 15:54:14 -0700
committerDavid S. Miller <davem@davemloft.net>2008-06-17 15:54:14 -0700
commit3d00fb9eb11ac49d4035f756d116deeeaf99a26b (patch)
treeb1a0da01e540e07dcc5a4697b51bdf1f253191bc /net/sctp/protocol.c
parent48c5732f4ac0621a2fdde006d55a6621a47a728f (diff)
sctp: fix error path in sctp_proc_init
After the sctp_remaddr_proc_init failed, the proper rollback is not the sctp_remaddr_proc_exit, but the sctp_assocs_proc_exit. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Vlad Yasevich <vladislav.yasevich@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/protocol.c')
-rw-r--r--net/sctp/protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index 23aaffb97ca..98c6a882016 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -119,7 +119,7 @@ static __init int sctp_proc_init(void)
return 0;
out_remaddr_proc_init:
- sctp_remaddr_proc_exit();
+ sctp_assocs_proc_exit();
out_assocs_proc_init:
sctp_eps_proc_exit();
out_eps_proc_init: