mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
net: tipc: fix possible refcount leak in tipc_sk_create()
Free sk in case tipc_sk_insert() fails. Signed-off-by: Hangyu Hua <hbh25y@gmail.com> Reviewed-by: Tung Nguyen <tung.q.nguyen@dektech.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5a478a653b
commit
00aff3590f
1 changed files with 1 additions and 0 deletions
|
@ -502,6 +502,7 @@ static int tipc_sk_create(struct net *net, struct socket *sock,
|
||||||
sock_init_data(sock, sk);
|
sock_init_data(sock, sk);
|
||||||
tipc_set_sk_state(sk, TIPC_OPEN);
|
tipc_set_sk_state(sk, TIPC_OPEN);
|
||||||
if (tipc_sk_insert(tsk)) {
|
if (tipc_sk_insert(tsk)) {
|
||||||
|
sk_free(sk);
|
||||||
pr_warn("Socket create failed; port number exhausted\n");
|
pr_warn("Socket create failed; port number exhausted\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue