|
@@ -309,6 +309,10 @@ static int tipc_accept_from_sock(struct tipc_conn *con)
|
|
|
|
|
|
/* Notify that new connection is incoming */
|
|
/* Notify that new connection is incoming */
|
|
newcon->usr_data = s->tipc_conn_new(newcon->conid);
|
|
newcon->usr_data = s->tipc_conn_new(newcon->conid);
|
|
|
|
+ if (!newcon->usr_data) {
|
|
|
|
+ sock_release(newsock);
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ }
|
|
|
|
|
|
/* Wake up receive process in case of 'SYN+' message */
|
|
/* Wake up receive process in case of 'SYN+' message */
|
|
newsock->sk->sk_data_ready(newsock->sk);
|
|
newsock->sk->sk_data_ready(newsock->sk);
|