dect
/
linux-2.6
Archived
13
0
Fork 0

[SCSI] iscsi_tcp: buggered kmalloc()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
Al Viro 2007-07-20 16:03:40 +01:00 committed by James Bottomley
parent 6585c1b3e2
commit e7cbff13ec
1 changed files with 1 additions and 1 deletions

View File

@ -1885,7 +1885,7 @@ static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
struct sockaddr_in *sin; struct sockaddr_in *sin;
int rc = 0, len; int rc = 0, len;
addr = kmalloc(GFP_KERNEL, sizeof(*addr)); addr = kmalloc(sizeof(*addr), GFP_KERNEL);
if (!addr) if (!addr)
return -ENOMEM; return -ENOMEM;