diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2016-06-13 15:08:26 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-15 06:45:42 (GMT) |
commit | a5e27d18fe64561a467b706f70cfc89ba6323f87 (patch) | |
tree | 4dafbedff54a80d58248235b40b7ca67bebaf0af /net | |
parent | d4c76c1afe3d3f42c854afe46edd910575f77252 (diff) | |
download | linux-a5e27d18fe64561a467b706f70cfc89ba6323f87.tar.xz |
sctp: fix error return code in sctp_init()
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sctp/protocol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index 40022ee..3b56ae5 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -1479,7 +1479,8 @@ static __init int sctp_init(void) INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain); } - if (sctp_transport_hashtable_init()) + status = sctp_transport_hashtable_init(); + if (status) goto err_thash_alloc; pr_info("Hash tables configured (bind %d/%d)\n", sctp_port_hashsize, |