summary refs log tree commit diff
diff options
context:
space:
mode:
authorVlad Yasevich <vladislav.yasevich@hp.com>2007-07-03 12:43:12 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-07-05 17:40:08 -0700
commit3663c306609a9322a484fba28b3da66142c50ee9 (patch)
tree04715aceacd8b7ef540c2124bc5e6c5ed6b1d2c2
parent7e8767dddf3ad863a7013c334392e09177b48e2c (diff)
downloadlinux-3663c306609a9322a484fba28b3da66142c50ee9.tar.gz
SCTP: Fix thinko in sctp_copy_laddrs()
Correctly dereference bytes_copied in sctp_copy_laddrs().
I totally must have spaced when doing this.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/sctp/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 67861a8f00cb..1e788279bb22 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -4170,7 +4170,7 @@ static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
 		to += addrlen;
 		cnt ++;
 		space_left -= addrlen;
-		bytes_copied += addrlen;
+		*bytes_copied += addrlen;
 	}
 
 	return cnt;