diff options
Diffstat (limited to 'net/sctp/bind_addr.c')
| -rw-r--r-- | net/sctp/bind_addr.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c index 41145fe31813..64977ea0f9c5 100644 --- a/net/sctp/bind_addr.c +++ b/net/sctp/bind_addr.c @@ -162,7 +162,7 @@ int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,  	struct sctp_sockaddr_entry *addr;  	/* Add the address to the bind address list.  */ -	addr = t_new(struct sctp_sockaddr_entry, gfp); +	addr = kzalloc(sizeof(*addr), gfp);  	if (!addr)  		return -ENOMEM;  | 
