From 0d64183c4900e580a08135abccfa1f1376166efb Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 25 Mar 2006 19:17:39 +0000 Subject: [PATCH] --- ChangeLog | 4 ++++ src/SocketCore.cc | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3ff83770e..1c491187e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-03-17 Tatsuhiro Tsujikawa + + * SocketCore.cc: remove the assignment of addrinfo.ai_addr. + 2006-03-09 Tatsuhiro Tsujikawa * ChunkedEncoding.{h,cc}: fixed the bug that if chunk data is binary, diff --git a/src/SocketCore.cc b/src/SocketCore.cc index f4d02dcef..b47571a78 100644 --- a/src/SocketCore.cc +++ b/src/SocketCore.cc @@ -134,7 +134,6 @@ void SocketCore::establishConnection(string host, int port) { ai.ai_family = PF_INET; ai.ai_socktype = SOCK_STREAM; ai.ai_protocol = 0; - ai.ai_addr = (struct sockaddr*)&sockaddr; struct addrinfo* res; int ec; if((ec = getaddrinfo(host.c_str(), NULL, &ai, &res)) != 0) {